Initial commit

This commit is contained in:
2020-11-25 15:19:15 +01:00
commit 3178c8fe40
4 changed files with 104 additions and 0 deletions

20
docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
version: '3.8'
services:
traefik:
image: traefik:2.3
ports:
- "80:80"
- "443:443"
- "8080:8080"
networks:
- web
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./conf/traefik.toml:/etc/traefik/traefik.toml:ro
- ./conf/acme.json:/acme.json
- ./conf/custom:/etc/traefik/custom:ro
networks:
web:
external: true