33 lines
1.3 KiB
Org Mode
33 lines
1.3 KiB
Org Mode
:PROPERTIES:
|
|
:ID: 86371601-9aa6-4568-8063-ccd9f6d2ace3
|
|
:END:
|
|
#+title: flame-docker
|
|
|
|
Flame is self-hosted ([[id:df046fd7-1f82-4e12-9065-56d222f56408][docker]]) startpage for your [[id:f2b1d5af-1a7d-47a5-95c8-4a85d558419e][server]]. Its design is inspired (heavily) by SUI. Flame is very easy to setup and use. With built-in editors, it allows you to setup your very own application hub in no time - no file editing necessarya. Should be deployed only in [[id:4afb1f41-983a-4b54-9828-a1e3788eb28b][portainer-docker]] with a [[id:98642623-d85a-432c-90d5-bfff7ead8c7b][proxy]] (e.g. [[id:90e3b8a2-b523-4044-af6f-fd4a559b2d7f][traefik_docker]]).
|
|
|
|
* [[id:fcbfabfa-4a8c-4826-8b57-5dce05965c76][docker-compose]]
|
|
#+begin_src
|
|
version: '3.6'
|
|
|
|
services:
|
|
flame:
|
|
image: pawelmalak/flame
|
|
container_name: flame
|
|
volumes:
|
|
- /path/to/host/data:/app/data
|
|
- /var/run/docker.sock:/var/run/docker.sock # optional but required for Docker integration
|
|
ports:
|
|
- 5005:5005
|
|
secrets:
|
|
- password # optional but required for (1)
|
|
environment:
|
|
- PASSWORD=flame_password
|
|
- PASSWORD_FILE=/run/secrets/password # optional but required for (1)
|
|
restart: unless-stopped
|
|
|
|
# optional but required for Docker secrets (1)
|
|
secrets:
|
|
password:
|
|
file: /path/to/secrets/password
|
|
#+end_src
|