-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
38 lines (35 loc) · 924 Bytes
/
docker-compose.yaml
File metadata and controls
38 lines (35 loc) · 924 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
35
36
37
38
version: "3.3"
services:
webelexis:
build: .
container_name: wlx_webelexis
hostname: webelexis
networks:
- external_webelexis_net
volumes:
- ./server/config:/home/node/webelexis/server/config
ports:
- 3030:3030
- 4040:4040
labels:
- traefik.enable=true
- traefik.http.routers.zwei.rule=Host(`termine.hodor.lan`)
- traefik.http.routers.zwei.entrypoints=web
- traefik.http.services.service1.loadbalancer.server.port=4040
traefik:
image: traefik:v2.8
container_name: wlx_proxy
command:
- --log.level=DEBUG
- "--api.insecure=true"
- "--providers.docker=true"
- "--providers.docker.exposedbydefault=false"
- "--entrypoints.web.address=:80"
ports:
- 80:80
- 8080:8080
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
networks:
external_webelexis_net:
driver: bridge