-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (42 loc) · 1.33 KB
/
docker-compose.yml
File metadata and controls
47 lines (42 loc) · 1.33 KB
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
version: "3.8"
services:
traefik:
image: traefik:latest
command:
- "--api.insecure=true"
- "--providers.docker=true"
- "--providers.docker.exposedbydefault=false"
- "--entrypoints.web.address=:8001"
ports:
- "80:80"
- "8001:8001"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro"
graph-service:
build:
context: ./GraphService
labels:
- "traefik.enable=true"
- "traefik.http.routers.graph-service.rule=Path(`/graph`)"
- "traefik.http.routers.graph-service.entrypoints=web"
bfs-service:
build:
context: ./BFSService
labels:
- "traefik.enable=true"
- "traefik.http.routers.bfs-service.rule=Path(`/bfs`)"
- "traefik.http.routers.bfs-service.entrypoints=web"
edmonds-karp-service:
build:
context: ./EdmondsKarpService
labels:
- "traefik.enable=true"
- "traefik.http.routers.edmonds-karp-service.rule=Path(`/edmondsKarpMaxGraphFlow`)"
- "traefik.http.routers.edmonds-karp-service.entrypoints=web"
push-relabel-service:
build:
context: ./PushRelabelService
labels:
- "traefik.enable=true"
- "traefik.http.routers.push-relabel-service.rule=Path(`/pushRelabelMaxGraphFlow`)"
- "traefik.http.routers.push-relabel-service.entrypoints=web"