self-host/services/wakapi/docker-compose.yml

17 lines
307 B
YAML
Raw Normal View History

2025-05-04 18:30:01 +01:00
services:
wakapi:
container_name: wakapi
2025-05-04 18:30:01 +01:00
image: ghcr.io/muety/wakapi:latest
init: true
ports:
- 8004:3000
restart: unless-stopped
networks:
- web
2025-05-04 18:30:01 +01:00
volumes:
- /data/sqlite/wakapi:/data # bind mount, no need to add named vol
2025-05-04 18:30:01 +01:00
networks:
web:
external: true