forked from cityvizor/cityvizor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.dev.yml
45 lines (44 loc) · 1.19 KB
/
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
version: "3.8"
services:
# We don't need the nginx container when developing. This effectively removes it.
# https://stackoverflow.com/a/45385268/5127149
proxy:
image: tianon/true
command: ""
entrypoint: ""
cityvizor-client:
build:
target: dev
volumes:
- ./client:/user/src/app
- /user/src/app/node_modules
ports:
- 4200:4200
- 49153:49153
cityvizor-server:
build:
target: dev
command: -w db.cityvizor.cesko.digital -a -m server-dev
ports:
- 3000:3000
volumes:
- ./server:/user/src/app
- /user/src/app/node_modules
cityvizor-worker:
build:
target: dev
command: -w db.cityvizor.cesko.digital -a -m worker-dev
volumes:
- ./server:/user/src/app
- /user/src/app/node_modules
backend-kotlin:
ports:
- 4203:8080
landing-page:
build:
target: dev
ports:
- 4202:8080
volumes:
- ./landing-page/src:/user/src/app/src
- ./landing-page/cfg:/user/src/app/cfg