71828a81cf
bentopdf :latest -> v2.8.6; calibre-web :latest -> v4.0.6 (== running digest on demo 9201, c31a738b - pin is a no-op); papra :latest -> 26.6.1-rootless (latest was the rootless variant); recipe-importer :latest -> v0.9.11 (tag pre-existed, digest-equal, no retag needed); termix :latest -> 2.5.0. All five pins digest-identical to what :latest resolved to on 2026-07-12. New gate scripts/check-image-pins.py (catches floating tags AND untagged refs; red-proofed both shapes). Standing rule in CLAUDE.md + REUSE.md row.
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
# Papra - Minimalista dokumentumtár és rendszerező
|
|
# Domain: ${SUBDOMAIN}.${DOMAIN}
|
|
# Database: None (file-based)
|
|
# RAM: ~50M (mem_limit: 256M) | Pi-compatible: Yes
|
|
#
|
|
# Environment variables:
|
|
# DOMAIN - Your domain (e.g., demo-felhom.eu)
|
|
|
|
services:
|
|
papra:
|
|
image: ghcr.io/papra-hq/papra:26.6.1-rootless
|
|
container_name: papra
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=Europe/Budapest
|
|
- APP_BASE_URL=https://${SUBDOMAIN}.${DOMAIN}
|
|
volumes:
|
|
- papra_data:/app/data
|
|
networks:
|
|
- traefik-public
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 256M
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:1221"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 30s
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.papra.rule=Host(`${SUBDOMAIN}.${DOMAIN}`)"
|
|
- "traefik.http.routers.papra.entrypoints=websecure"
|
|
- "traefik.http.routers.papra.tls=true"
|
|
- "traefik.http.routers.papra.tls.certresolver=letsencrypt"
|
|
- "traefik.http.services.papra.loadbalancer.server.port=1221"
|
|
|
|
volumes:
|
|
papra_data:
|
|
|
|
networks:
|
|
traefik-public:
|
|
external: true
|