-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
66 lines (61 loc) · 1.91 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
61
62
63
64
65
66
version: '3'
services:
# PostgreSQL
postgresdb:
image: postgres:14
restart: on-failure:5
environment:
POSTGRES_PASSWORD: password
POSTGRES_USER: db_user
# MySQL
# mysqldb:
# image: mysql:5.7
# restart: on-failure:5
# environment:
# MYSQL_ROOT_PASSWORD: password
# MYSQL_PASSWORD: password
# MYSQL_USER: db_user
app:
build:
context: .
args:
APP_HOME: /var/lib/redmine
APP_PORT: $APP_PORT
RUBY_VERSION: $RUBY_VERSION
# for M2 Mac
platform: linux/amd64
environment:
RAILS_DB_ADAPTER: postgresql
RAILS_DB_HOST: postgresdb
RAILS_DB: app
RAILS_DB_USERNAME: db_user
RAILS_DB_PASSWORD: password
RAILS_DB_ENCODING: utf8
RAILS_ENV: development
env_file: .env
tty: true
ports:
- $APP_PORT:3000
depends_on:
- postgresdb
# - mysqldb
volumes:
# - ./app:/var/lib/redmine:cached
# 全体を同期すると速度が遅くなるため、上の1行を消して下の4行のコメントアウトを外してもいい
# その場合、同期場所がgitの履歴とshareディレクトリのみになるため、git commitしたもの + shareディレクトリに入れたファイル以外はコンテナのキャッシュが消えたときに消える
- ./app/.git:/var/lib/redmine/.git
# - ./share:/var/lib/redmine/../share
# - ./app/public:/var/lib/redmine/themes
# - ./app/plugins:/var/lib/redmine/plugins
# For selenium test
# chrome:
# M1の場合はselenium/standalone-chrome-debugが動かないため、seleniarm/standalone-chromium:latestを代わりに使うこと。
# image: selenium/standalone-chrome-debug:3.141.59-20210913
# shm_size: 256m
# ports:
# - $SELENIUM_PORT_1:4444
# - $SELENIUM_PORT_2:5900
smtp:
image: schickling/mailcatcher
ports:
- $MAILCATCHER_PORT:1080