37 lines
890 B
YAML
37 lines
890 B
YAML
# Pinchflat - YouTube auto-archiver (test deployment)
|
|
# Port: 8945
|
|
# Docs: https://github.com/kieraneglin/pinchflat
|
|
# Scope: lightweight evaluation on Atlantis. No SSO, no reverse proxy, no Kuma.
|
|
# See: docs/superpowers/specs/2026-04-24-pinchflat-design.md
|
|
version: "3.8"
|
|
|
|
services:
|
|
pinchflat:
|
|
image: ghcr.io/kieraneglin/pinchflat:latest
|
|
container_name: pinchflat
|
|
|
|
environment:
|
|
- PUID=1029
|
|
- PGID=100
|
|
- TZ=America/Los_Angeles
|
|
- UMASK=022
|
|
|
|
ports:
|
|
- "8945:8945"
|
|
|
|
volumes:
|
|
- /volume2/metadata/docker2/pinchflat/config:/config
|
|
- /volume1/data/media/youtube:/downloads
|
|
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "curl -fsS -o /dev/null http://127.0.0.1:8945/ || exit 1"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 30s
|
|
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
|
|
restart: unless-stopped
|