No idea where I'm at with this, I think somewhat near the end though

This commit is contained in:
2025-10-18 00:35:28 +01:00
parent a2131623b5
commit f00b8f2bcb
54 changed files with 1635 additions and 2048 deletions

23
docker-compose.yaml Normal file
View File

@@ -0,0 +1,23 @@
services:
traefik:
container_name: traefik
image: traefik:latest
ports:
- 80:80
command:
- --api.insecure=true
- --providers.docker=true
- --providers.docker.watch=true
- --providers.docker.exposedbydefault=false
- --providers.file.directory=/config
- --providers.file.watch=true
- --entryPoints.http.address=:80
- --accesslog
- --accesslog.format=json
volumes:
- ./docker/traefik/config:/config
- /var/run/docker.sock:/var/run/docker.sock