DockFlare/docker-compose.yml
ChrispyBacon-dev 5538e792cf
Some checks failed
Docker Image Build and Push (Conditional Arch) / build (push) Failing after 2m31s
removed driver: bridge in docker compose
2025-04-16 22:12:24 +02:00

24 lines
No EOL
708 B
YAML

version: '3.8'
services:
cloudflare-tunnel-manager:
build: . # for building local docker image
container_name: dockflare
# image: alplat/dockflare:stable # The pre-built Docker image (`alplat/dockflare:stable`) is currently only available for `x86_64` / `amd64` architectures.
restart: unless-stopped
ports:
- "5000:5000"
env_file:
- .env
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- dockflare_data:/app/data
networks:
- cloudflare-net
environment:
- STATE_FILE_PATH=/app/data/state.json
- TZ=Europe/Zurich # Set the timezone to Zurich
volumes:
dockflare_data:
networks:
cloudflare-net:
name: cloudflare-net