-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.dev.yml
50 lines (50 loc) · 994 Bytes
/
docker-compose.dev.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
version: "3"
services:
postgres:
image: "postgres:11-alpine"
redis:
image: "redis:5-alpine"
nginx:
build:
dockerfile: Dockerfile.dev
context: ./nginx
ports:
- '3050:80'
restart: always
depends_on:
- api
- client
api:
build:
dockerfile: Dockerfile.dev
context: ./api
volumes:
- /usr/app/node_modules
- ./api:/usr/app
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- PGHOST=postgres
- PGPORT=5432
- PGDATABASE=postgres
- PGUSER=postgres
- PGPASSWORD=postgres_password
depends_on:
- postgres
client:
build:
dockerfile: Dockerfile.dev
context: ./client
volumes:
- /app/node_modules
- ./client:/app
worker:
build:
dockerfile: Dockerfile.dev
context: ./worker
volumes:
- /app/node_modules
- ./worker:/app
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379