-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
34 lines (34 loc) · 1.81 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
services:
db:
image: postgres
# dbのユーザー名とパスワードでこれが無いとdbが起動できなかった
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
# 無くても動くけど指定しておくとdocker-composeを停止してもdbの内容が永続化されるため、指定することが多いと思われる
# https://matsuand.github.io/docs.docker.jp.onthefly/storage/volumes/
volumes:
- todo_app_volume:/var/lib/postgresql/data
# 無くても動くが指定しておくとコンテナ停止時にサービスが再起動してくれる
# https://docs.docker.jp/v19.03/config/container/start-containers-automatically.html
restart: always
web:
build: .
# tmp/pids/server.pidが残ってたら `A server is already running. ~~` のエラーでrailsを起動できないので事前に消してから、`rails sever` する
command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'"
# 上記のdbイメージで指定したユーザー名とパスワードをrails側でも指定するため環境変数に設定。
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
# ホストのカレントディレクトリ(.)とイメージ内の/myappディレクトリを同期させている
volumes:
- .:/myapp
ports:
- "3000:3000"
restart: always # コンテナが停止すると常に再起動
tty: true # 疑似ターミナル (pseudo-TTY) を割り当て。https://docs.docker.jp/compose/compose-file/index.html#tty
stdin_open: true # サービス コンテナに標準入力を割り当てて実行するよう設定(https://docs.docker.jp/compose/compose-file/index.html#stdin-open)。
depends_on:
- db
volumes:
todo_app_volume: