-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathec2-docker-compose.yml
More file actions
45 lines (40 loc) · 1.38 KB
/
ec2-docker-compose.yml
File metadata and controls
45 lines (40 loc) · 1.38 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
services:
orchestrator:
labels:
- "traefik.enable=true"
- "traefik.http.routers.orchestrator.rule=Host(`theminimalist.net`)"
- "traefik.http.routers.orchestrator.tls.certresolver=myresolver"
- "traefik.docker.network=traefik"
networks:
- default
- traefik
monarch-link-app:
labels:
- "traefik.enable=true"
- "traefik.http.routers.monarch.rule=Host(`theminimalist.net`) && PathPrefix(`/monarch`)"
- "traefik.http.routers.monarch.tls.certresolver=myresolver"
- "traefik.http.middlewares.monarch-stripprefix.stripprefix.prefixes=/monarch"
- "traefik.http.routers.monarch.middlewares=monarch-stripprefix@docker"
- "traefik.docker.network=traefik"
networks:
- default
- traefik
tat:
labels:
- "traefik.enable=true"
- "traefik.http.routers.tat.rule=Host(`theminimalist.net`) && PathPrefix(`/tat`)"
- "traefik.http.routers.tat.tls.certresolver=myresolver"
- "traefik.http.middlewares.tat-stripprefix.stripprefix.prefixes=/tat"
- "traefik.http.routers.tat.middlewares=tat-stripprefix@docker"
- "traefik.docker.network=traefik"
environment:
- SERVER_URL=https://theminimalist.net/
networks:
- default
- traefik
openstreetmap:
environment:
- SERVERS=https://overpass-api.de/api/interpreter
networks:
traefik:
external: true