Initial docker compose files

This commit is contained in:
2025-06-12 00:09:45 +02:00
commit 194b674c7d
7 changed files with 219 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
---
services:
traefik:
image: docker.io/library/traefik:v3.4.0
container_name: traefik
ports:
- 80:80
- 443:443
#- 8080:8080
volumes:
- /run/docker.sock:/run/docker.sock:ro
- ./config/:/etc/traefik/:ro
- ./certs/:/var/traefik/certs/:rw
environment:
- CF_DNS_API_TOKEN=${CF_DNS_API_TOKEN}
networks:
- frontend
restart: always
networks:
frontend:
external: true