24 lines
No EOL
533 B
YAML
24 lines
No EOL
533 B
YAML
services:
|
|
vikunja:
|
|
container_name: vikunja
|
|
image: vikunja/vikunja
|
|
env_file:
|
|
- ./.env
|
|
ports:
|
|
- 3456:3456
|
|
volumes:
|
|
- ./files:/app/vikunja/files
|
|
labels:
|
|
- diun.enable=true
|
|
restart: unless-stopped
|
|
db:
|
|
image: mariadb:10
|
|
container_name: mariadb_vikunja
|
|
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
|
|
env_file:
|
|
- ./.env
|
|
volumes:
|
|
- ./db:/var/lib/mysql
|
|
restart: unless-stopped
|
|
labels:
|
|
- diun.enable=true |