-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
59 lines (53 loc) · 1.09 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
version: '3.8'
services:
backend:
restart: always
build:
context: ./packages/backendv2
dockerfile: development.Dockerfile
ports:
- 3003:3003
depends_on:
- redis
- postgres
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- DB_HOST=postgres
- DB_USER=postgres
- DB_PASSWORD=postgres
example:
restart: always
build:
context: ./packages/moocfi-quizzes
dockerfile: development.Dockerfile
ports:
- 1234:1234
depends_on:
- backend
dashboard:
restart: always
build:
context: ./packages/quizzes-dashboard
dockerfile: development.Dockerfile
depends_on:
- backend
ports:
- 5000:5000
postgres:
image: postgres:11-alpine
restart: always
ports:
- 5432:5432
environment:
- POSTGRES_DB=postgres
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
volumes:
- postgres:/var/lib/postgresql/data
redis:
image: redis:5-alpine
container_name: redis
restart: always
volumes:
postgres: ~