-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
78 lines (69 loc) · 1.36 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
version: "3.3"
services:
api:
build:
context: .
image: replay-master
env_file: docker-compose.env
environment:
SERVICES: api
PORT: 3000
depends_on:
- nats
labels:
- "traefik.enable=true"
- "traefik.http.routers.api-gw.rule=PathPrefix(`/`)"
- "traefik.http.services.api-gw.loadbalancer.server.port=3000"
networks:
- internal
steam-demo-fetcher:
build:
context: .
image: replay-master
env_file: docker-compose.env
environment:
SERVICES: steam-demo-fetcher
depends_on:
- nats
networks:
- internal
products:
build:
context: .
image: replay-master
env_file: docker-compose.env
environment:
SERVICES: products
depends_on:
- mongo
- nats
networks:
- internal
mongo:
image: mongo:4
volumes:
- data:/data/db
networks:
- internal
nats:
image: nats:2
networks:
- internal
traefik:
image: traefik:v2.4
command:
- "--api.insecure=true" # Don't do that in production!
- "--providers.docker=true"
- "--providers.docker.exposedbydefault=false"
ports:
- 3000:80
- 3001:8080
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
networks:
- internal
- default
networks:
internal:
volumes:
data: