-
Notifications
You must be signed in to change notification settings - Fork 33
/
docker-compose.yml
60 lines (55 loc) · 1.69 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
services:
# Selenium サーバを起動するコンテナ
selenium:
container_name: rfctrans-selenium-chrome
# 通常の環境では、以下のイメージを使います。
#image: selenium/standalone-chrome
# M1 Mac など ARM で動作する環境では、以下のイメージを使います。
#image: seleniarm/standalone-chromium
image: ${DOCKER_SELENIUM_IMAGE_NAME} # .envファイルに環境変数を定義する
ports:
# Selenium サーバに接続するポート
- "11444:4444"
# VNC で接続するポート
- "11590:5900"
# Selenium サーバのログを出力するポート
- "11790:7900"
# コンテナが使用するメモリの上限を設定
shm_size: "2gb"
restart: unless-stopped
# Web スクレイピングを実行するコンテナ
scraping-app:
container_name: rfctrans-python
build:
context: ./
dockerfile: ./Dockerfile
ports:
- "11082:80"
volumes:
- ./main.py:/opt/app/main.py
- ./src:/opt/app/src
- ./tests:/opt/app/tests
- ./templates:/opt/app/templates
- ./data:/opt/app/data
- ./html:/opt/app/html
- ./scraping-app/.env:/opt/app/.env
tty: true
restart: unless-stopped
# RFC翻訳結果を閲覧するためのWebページ
nginx:
container_name: rfctrans-nginx
build: ./nginx
ports:
- "11080:80"
volumes:
- ./html:/usr/share/nginx/html
restart: unless-stopped
# Jenkinsコンテナ
jenkins:
container_name: rfctrans-jenkins
image: jenkins/jenkins:lts
ports:
- "11081:8080"
volumes:
- ./jenkins/jenkins_home:/var/jenkins_home
restart: unless-stopped