mirror of
https://github.com/ChrispyBacon-dev/DockFlare.git
synced 2026-04-28 03:39:32 +00:00
Some checks failed
Docker Image Build and Push (Conditional Arch) / build (push) Failing after 2m31s
24 lines
No EOL
708 B
YAML
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 |