Files
docker-whmcs/_base/compose/docker-compose.yml
EdyTheCow f254a6fd06 Optimize, clean up and comments
- Add comments to .env
- Place basic auth directly into labels instead
- Remove whmcs data folders, these are now created automatically
2025-10-09 17:35:27 +02:00

20 lines
411 B
YAML

services:
traefik:
image: traefik:v3
env_file:
- .env
networks:
- docker-whmcs-network
restart: always
ports:
- "80:80"
- "443:443"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${DATA_DIR}/traefik/traefik.toml:/etc/traefik/traefik.toml
- ${DATA_DIR}/traefik/acme.json:/acme.json
networks:
docker-whmcs-network:
external: true