Files
coolify/templates/compose/pingvinshare.yaml
2025-06-18 14:10:00 +02:00

25 lines
794 B
YAML

# documentation: https://github.com/stonith404/pingvin-share
# slogan: A self-hosted file sharing platform that combines lightness and beauty, perfect for seamless and efficient file sharing.
# tags: self-hosted, file-sharing, files, cloud, sharing
# logo: svgs/pingvinshare.svg
# port: 3000
services:
pingvinshare:
image: ghcr.io/stonith404/pingvin-share
environment:
- SERVICE_FQDN_PINGVINSHARE_3000
- TRUST_PROXY=${TRUST_PROXY:-true}
volumes:
- pingvinshare_data:/opt/app/backend/data
- pingvinshare_images:/opt/app/frontend/public/img
healthcheck:
test:
[
"CMD-SHELL",
"wget --quiet --tries=1 --spider http://localhost:3000/api/health || exit 1",
]
interval: 5s
timeout: 20s
retries: 10