inital commit

This commit is contained in:
Tim Lappe 2025-04-25 21:28:18 +02:00
commit 67fbe4b609
2 changed files with 24 additions and 0 deletions

24
docker-compose.yml Normal file
View File

@ -0,0 +1,24 @@
services:
traefik:
image: "traefik:v3.3"
container_name: "traefik"
command:
#- "--log.level=DEBUG"
- "--api.insecure=true"
- "--providers.docker=true"
- "--providers.docker.exposedbydefault=false"
- "--entryPoints.web.address=:80"
ports:
- "8081:80"
- "8080:8080"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro"
- "./:/etc/traefik/"
whoami:
image: "traefik/whoami"
container_name: "simple-service"
labels:
- "traefik.enable=true"
- "traefik.http.routers.whoami.rule=Host(`whoami.strolap.com`)"
- "traefik.http.routers.whoami.entrypoints=web"

0
traefik.yaml Normal file
View File