-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
46 lines (45 loc) · 925 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
version: "3.1"
services:
postgres:
image: postgres:latest
redis:
image: redis:latest
api:
build:
dockerfile: Dockerfile.prod
context: ./server
volumes:
- /app/node_modules
- ./server:/app
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- POSTGRES_USER=postgres
- PGHOST=postgres
- POSTGRES_DB=postgresProd
- POSTGRES_PASSWORD=postgres_password
- PGPORT=5432
client:
build:
dockerfile: Dockerfile.prod
context: ./client
volumes:
- /app/node_modules
- ./client:/app
worker:
build:
dockerfile: Dockerfile.prod
context: ./worker
volumes:
- /app/node_modules
- ./worker:/app
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
nginx:
build:
dockerfile: Dockerfile.prod
context: ./nginx
restart: always
ports:
- "8098:80"