-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (29 loc) · 892 Bytes
/
docker-compose.yml
File metadata and controls
35 lines (29 loc) · 892 Bytes
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
version: '2'
services:
traefik:
image: traefik:v2.2
command: --providers.docker
ports:
- 80:80
volumes:
- /var/run/docker.sock:/var/run/docker.sock
plantuml:
image: registry.kher.nl/tlc/plantuml-server:URLWorking
restart: always
environment:
PLANTUML_JAVASCRIPT_UNSECURE: 'true'
BASE_URL: plantuml
labels:
- "traefik.http.routers.uml.rule=PathPrefix(`/plantuml`)"
nginx:
image: 'nginx'
restart: always
volumes:
- ./src:/usr/share/nginx/html:ro
labels:
- "traefik.http.routers.nginx.rule=PathPrefix(`/`)"
spot:
image: gitlab-registry.lre.epita.fr/spot/spot-web
restart: always
labels:
- "traefik.http.routers.spot.rule=PathPrefix(`/api`)"