#!/bin/sh # The complete image list of the deploy stack, GENERATED from the compose # file (issue #218, ADR 0024) — a mirror procedure that works from a # hand-maintained list will silently miss a service one day. # # Usage: # TAG=v1.2.0 IMAGE_PREFIX=gitea.101010.cloud/stwaidele/dorfteich \ # deploy/scripts/list-images.sh # # REGISTRY_PREFIX is deliberately left empty here: the list names the # UPSTREAM references (with digests) that a mirror copies FROM. set -eu cd "$(dirname "$0")/../compose" COMPOSE_PROJECT_NAME=dorfteich-list \ POSTGRES_PASSWORD=unused COLLAB_TOKEN_SECRET=unused \ REGISTRY_PREFIX= \ docker compose -f docker-compose.yml --profile caddy config --images | sort -u