11 lines
247 B
YAML
11 lines
247 B
YAML
services:
|
|
wakapi:
|
|
container_name: wakapi-test-instance
|
|
image: ghcr.io/muety/wakapi:latest
|
|
init: true
|
|
ports:
|
|
- 3000:3000
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./data/:/data # bind mount, no need to add named vol
|
|
|