30 lines
No EOL
687 B
YAML
Executable file
30 lines
No EOL
687 B
YAML
Executable file
services:
|
|
|
|
flame:
|
|
image: ghcr.io/fdarveau/flame:latest
|
|
container_name: flame
|
|
volumes:
|
|
- /DockerVol/Flame:/app/data
|
|
- /var/run/docker.sock:/var/run/docker.sock # optional but required for Docker integration
|
|
networks:
|
|
- netgrimoire
|
|
ports:
|
|
- 5005:5005
|
|
environment:
|
|
PASSWORD: F@lcon13
|
|
PUID: 999
|
|
PGID: 1001001
|
|
TZ: America/Chicago
|
|
# - PASSWORD_FILE=/run/secrets/password # optional but required for (1)
|
|
|
|
deploy:
|
|
placement:
|
|
constraints:
|
|
- node.hostname == docker2
|
|
labels:
|
|
- flame.type="dashboard"
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
netgrimoire:
|
|
external: true |