bf1e339738
wishlist deployed but never created a container: the pull fails because cmintey/wishlist:1.9.0 no longer exists on Docker Hub. Upstream publishes to ghcr.io/cmintey/wishlist, where the current release is v0.66.0 (2026-07-08, confirmed against the GitHub releases API). Note the version string goes '1.9.0' -> 'v0.66.0'. That is NOT a downgrade: the old Hub pin used a scheme upstream does not publish under, so the catalog was pinned to an image reference that has no counterpart in the real release stream. This was a PRE-EXISTING defect -- wishlist was undeployable before this campaign too (it was not version-bumped by the sweep). Campaign 7 catalog sweep. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Nn3VgQk9iwEGgyx6QJ2NvE
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
# Wishlist - Családi kívánságlista megosztás
|
|
# Domain: ${SUBDOMAIN}.${DOMAIN}
|
|
# Database: None (file-based)
|
|
# RAM: ~30M (mem_limit: 128M) | Pi-compatible: Yes
|
|
#
|
|
# Environment variables:
|
|
# DOMAIN - Your domain (e.g., demo-felhom.eu)
|
|
|
|
services:
|
|
wishlist:
|
|
image: ghcr.io/cmintey/wishlist:v0.66.0
|
|
container_name: wishlist
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=Europe/Budapest
|
|
volumes:
|
|
- wishlist_data:/data
|
|
networks:
|
|
- traefik-public
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 128M
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:3000"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 30s
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.wishlist.rule=Host(`${SUBDOMAIN}.${DOMAIN}`)"
|
|
- "traefik.http.routers.wishlist.entrypoints=websecure"
|
|
- "traefik.http.routers.wishlist.tls=true"
|
|
- "traefik.http.routers.wishlist.tls.certresolver=letsencrypt"
|
|
- "traefik.http.services.wishlist.loadbalancer.server.port=3000"
|
|
|
|
volumes:
|
|
wishlist_data:
|
|
|
|
networks:
|
|
traefik-public:
|
|
external: true
|