-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
51 lines (49 loc) · 959 Bytes
/
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
version: "3.9"
services:
db:
image: postgres:latest
restart: always
environment:
- TZ
- POSTGRES_PASSWORD
- POSTGRES_DB
ports:
- 5432:5432
volumes:
- "dbdata:/var/lib/postgresql/data"
redis:
image: redis:latest
command: redis-server
restart: always
environment:
- TZ
ports:
- "6379:6379"
volumes:
- 'redis:/data'
web:
build: .
container_name: aldwin7894
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
- RAILS_MASTER_KEY
- RAILS_ENV
- NODE_ENV
- RAILS_ASSET_HOST
- OCCSON_ACCESS_TOKEN
- OCCSON_PASSPHRASE
volumes:
- ruby-gems:/gems
volumes:
dbdata:
redis:
ruby-gems: