-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose-template.yml
56 lines (56 loc) · 1.46 KB
/
docker-compose-template.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
version: '3'
services:
frontend:
image: frontend
build:
context: frontend
dockerfile: Dockerfile
environment:
- PORT=8080
- CHOKIDAR_USEPOLLING=true
labels:
- 'traefik.enable=true'
- 'traefik.http.routers.frontend.rule=Host(`improrpg.localhost`)'
- 'traefik.http.routers.frontend.entrypoints=web'
ports:
- 8080
volumes:
- ./frontend/src:/app/src
- ./frontend/public:/app/public
backend:
image: backend
build:
context: backend
dockerfile: Dockerfile
environment:
# only needed for cloud remote mongoDB: add own credentials
#- MONGODB_USERNAME=dbuser
#- MONGODB_PASSWORD=dbpassword
#- MONGODB_DATABASE=mydatabase
# only for local mongoDB
- MONGODB_CONNECTION_STRING=mongodb://mongo/improrpg
labels:
- 'traefik.enable=true'
- 'traefik.http.routers.backend.rule=(Host(`improrpg.localhost`) && PathPrefix(`/api`))'
- 'traefik.http.routers.backend.entrypoints=web'
ports:
- 3000
- 35729:35729
volumes:
- ./backend/src:/app/src
mongo:
image: mongo
ports:
- 27017:27017
load-balancer:
image: traefik:v2.2
command:
- '--api.insecure=true'
- '--providers.docker=true'
- '--providers.docker.exposedbydefault=false'
- '--entrypoints.web.address=:80'
ports:
- '80:80'
- '8080:8080'
volumes:
- '/var/run/docker.sock:/var/run/docker.sock:ro'