2023-01-12 13:49:11 +01:00
|
|
|
# flame docker compose
|
|
|
|
version: '3.9'
|
|
|
|
services:
|
|
|
|
flame:
|
|
|
|
image: "pawelmalak/flame:{{ flame_docker_image_version }}"
|
|
|
|
volumes:
|
|
|
|
- "{{ flame_data_path }}:/app/data"
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock # optional but required for Docker integration
|
|
|
|
ports:
|
|
|
|
- "{{ flame_port }}:5005"
|
|
|
|
environment:
|
2023-01-12 13:55:59 +01:00
|
|
|
- PASSWORD={{ flame_password }}
|
2023-01-12 13:49:11 +01:00
|
|
|
restart: unless-stopped
|
|
|
|
|