18 lines
440 B
YAML
18 lines
440 B
YAML
|
version: "3.9"
|
||
|
services:
|
||
|
bottin-agenda:
|
||
|
image: localhost/agecem/bottin-agenda:latest
|
||
|
ports:
|
||
|
- "1313:1313" # http
|
||
|
volumes:
|
||
|
- "bottin-agenda-config:/etc/bottin-agenda"
|
||
|
- "bottin-agenda-data:/var/lib/bottin-agenda"
|
||
|
command: bottin-agenda server --config /etc/bottin-agenda/bottin-agenda.yaml
|
||
|
restart: "always"
|
||
|
volumes:
|
||
|
bottin-agenda-config:
|
||
|
bottin-agenda-data:
|
||
|
networks:
|
||
|
default:
|
||
|
name: bottin
|