Files
yoink-go/docker-compose.yml
Bryan Bailey 1a567a19fe feat(web): add pagination and fix port binding for Tailscale access
- Paginate comic grid at 48 per page with smart page number controls
- Bind container port to 0.0.0.0 so Tailscale traffic can reach WSL2
2026-03-09 08:53:26 -04:00

11 lines
187 B
YAML

services:
yoink:
build: .
ports:
- "0.0.0.0:8080:8080"
volumes:
- ./library:/library
environment:
- YOINK_LIBRARY=/library
restart: unless-stopped