-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
80 lines (78 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
version: "3.9"
services:
db:
container_name: aldwin7894-pg
image: postgres:14-alpine
restart: always
environment:
- TZ
- POSTGRES_PASSWORD
- POSTGRES_DB
ports:
- 5432:5432
volumes:
- dbdata:/var/lib/postgresql/data
healthcheck:
test: pg_isready
interval: 10s
timeout: 5s
retries: 5
redis:
container_name: aldwin7894-redis
image: redis:alpine
command: redis-server /usr/local/etc/redis/redis.conf
restart: always
environment:
- TZ
ports:
- 6379:6379
volumes:
- redis:/data
- ./config/redis.conf:/usr/local/etc/redis/redis.conf
healthcheck:
test: redis-cli ping
interval: 10s
timeout: 5s
retries: 5
web:
build:
context: .
dockerfile: Dockerfile
args:
- TZ_ARG=${TZ}
- RAILS_ENV_ARG=${RAILS_ENV}
- NODE_ENV_ARG=${NODE_ENV}
- OCCSON_ACCESS_TOKEN_ARG=${OCCSON_ACCESS_TOKEN}
- OCCSON_PASSPHRASE_ARG=${OCCSON_PASSPHRASE}
- RAILS_MASTER_KEY_ARG=${RAILS_MASTER_KEY}
- RAILS_ASSET_HOST_ARG=${RAILS_ASSET_HOST}
container_name: aldwin7894-app
image: aldwin7894/aldwin7894:prod
restart: always
depends_on:
- db
- redis
ports:
- 3000:3000
environment:
- DATABASE_URL=postgres://postgres:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB}
- REDIS_URL=redis://redis:6379
- TZ=Asia/Manila
- RAILS_MASTER_KEY
- RAILS_ENV
- NODE_ENV
- RAILS_ASSET_HOST
- OCCSON_ACCESS_TOKEN
- OCCSON_PASSPHRASE
volumes:
- ruby-gems:/gems
healthcheck:
test: wget -nv -t1 --spider http://web:3000/healthcheck || exit 1
interval: 5m
timeout: 10s
retries: 5
start_period: 10s
volumes:
dbdata:
redis:
ruby-gems: