-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
95 lines (84 loc) · 1.61 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
version: "3.3"
services:
api:
build:
context: .
image: kata
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:
- stack_network
gophertown:
build:
context: .
image: kata
volumes:
- ./:/app
command: "npm run dev"
env_file: docker-compose.env
environment:
SERVICES: gopher, town
depends_on:
- nats
networks:
- stack_network
greeter:
build:
context: .
image: kata
env_file: docker-compose.env
environment:
SERVICES: greeter
depends_on:
- nats
networks:
- stack_network
products:
build:
context: .
image: kata
env_file: docker-compose.env
environment:
SERVICES: products
depends_on:
- mongo
- nats
networks:
- stack_network
mongo:
image: mongo:4
volumes:
- data:/data/db
networks:
- stack_network
nats:
image: nats:2
networks:
- stack_network
traefik:
image: traefik:v2.1
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:
- stack_network
- default
networks:
stack_network:
driver: bridge
volumes:
data: