feat(infra): rename packaging container to KNELCloudron-packaging and add TODO tracking

- Rename packaging container from tsys-cloudron-packaging to KNELCloudron-packaging
- Update image reference to git.knownelement.com/knel/knelcloudron-packaging:latest
- Add TODO.md with active tasks and backlog items
- Add todo-generate.sh and todo-update.sh helper scripts
- Update PackagingForCloudronWorkspace/README.md with workspace details
This commit is contained in:
2025-10-17 09:41:27 -05:00
parent 52439d8f37
commit 8d270bb289
7 changed files with 76 additions and 9 deletions

View File

@@ -1,8 +1,8 @@
#!/usr/bin/env bash
set -euo pipefail
NAME=${PACKAGING_CONTAINER_NAME:-tsys-cloudron-packaging}
IMAGE=${PACKAGING_IMAGE:-knel/packaging:latest}
NAME=${PACKAGING_CONTAINER_NAME:-KNELCloudron-packaging}
IMAGE=${PACKAGING_IMAGE:-git.knownelement.com/knel/knelcloudron-packaging:latest}
DOCKERFILE=${PACKAGING_DOCKERFILE:-docker/packaging/Dockerfile}
if ! docker image inspect "$IMAGE" >/dev/null 2>&1; then
@@ -27,4 +27,3 @@ else
fi
echo "Packaging container ready: $NAME (image: $IMAGE)"