subscription-tracker (3.2.1)

Published 2026-09-16 10:14:16 +01:00 by darren

Installation

docker pull forgejo.darrenjack.co.uk/darren/subscription-tracker:3.2.1
sha256:1c0dd84cb5ef68531a4fbdd6c12f386900a3b6caa0570016e0cf709140bf213e

About this package

Minimal shared Ubuntu 26.04 foundation

Image layers

umoci raw add-layer --image /home/buildd/rockcraft-ubuntu-e1c60b1bc0d25a2115f571511888c62b/images/ubuntu:rockcraft-base /home/buildd/rockcraft-ubuntu-e1c60b1bc0d25a2115f571511888c62b/images/.temp_layer.9485.tar --tag 26.04
umoci config --image /home/buildd/rockcraft-ubuntu-e1c60b1bc0d25a2115f571511888c62b/images/ubuntu:26.04 --clear=config.entrypoint --clear=config.cmd
umoci config --image /home/buildd/rockcraft-ubuntu-e1c60b1bc0d25a2115f571511888c62b/images/ubuntu:26.04 --clear=config.cmd --config.cmd /bin/bash
umoci config --image /home/buildd/rockcraft-ubuntu-e1c60b1bc0d25a2115f571511888c62b/images/ubuntu:26.04 --config.env PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
umoci config --image /home/buildd/rockcraft-ubuntu-e1c60b1bc0d25a2115f571511888c62b/images/ubuntu:26.04 --clear=config.labels --config.label org.opencontainers.image.version=26.04 --config.label org.opencontainers.image.title=ubuntu --config.label org.opencontainers.image.created=2026-09-01T20:37:00.369571+00:00 --config.label org.opencontainers.image.description=The Ubuntu container image maintained by Canonical Ubuntu is a Debian-based Linux operating system that runs from the desktop to the cloud, to all your internet connected things. It is the world's most popular operating system across public clouds and OpenStack clouds. It is the number one platform for containers; from Docker to Kubernetes to LXD, Ubuntu can run your containers at scale. Fast, secure and simple, Ubuntu powers millions of PCs worldwide.
umoci config --image /home/buildd/rockcraft-ubuntu-e1c60b1bc0d25a2115f571511888c62b/images/ubuntu:26.04 --clear=manifest.annotations --manifest.annotation org.opencontainers.image.version=26.04 --manifest.annotation org.opencontainers.image.title=ubuntu --manifest.annotation org.opencontainers.image.created=2026-09-01T20:37:00.369571+00:00 --manifest.annotation org.opencontainers.image.description=The Ubuntu container image maintained by Canonical Ubuntu is a Debian-based Linux operating system that runs from the desktop to the cloud, to all your internet connected things. It is the world's most popular operating system across public clouds and OpenStack clouds. It is the number one platform for containers; from Docker to Kubernetes to LXD, Ubuntu can run your containers at scale. Fast, secure and simple, Ubuntu powers millions of PCs worldwide.
umoci raw add-layer --image /home/buildd/rockcraft-ubuntu-e1c60b1bc0d25a2115f571511888c62b/images/ubuntu:26.04 /home/buildd/rockcraft-ubuntu-e1c60b1bc0d25a2115f571511888c62b/images/.temp_layer.control_data.9485.tar
ARG VERSION=26.04-3
ARG REVISION=d961298f7b6decd96df3f53be75b2a5d295a2747
LABEL org.opencontainers.image.title=container-base org.opencontainers.image.description=Minimal shared Ubuntu 26.04 foundation org.opencontainers.image.source=https://forgejo.darrenjack.co.uk/darren/container-base org.opencontainers.image.version=26.04-3 org.opencontainers.image.revision=d961298f7b6decd96df3f53be75b2a5d295a2747
RUN |2 VERSION=26.04-3 REVISION=d961298f7b6decd96df3f53be75b2a5d295a2747 /bin/sh -c test -f /usr/bin/pebble && ! dpkg-query -S /usr/bin/pebble && rm /usr/bin/pebble && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get upgrade -y && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ca-certificates && apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* # buildkit
ARG VCS_REF=f348ce41c3e20ecc163e657f04007fe4b377ebeb
ARG APP_VERSION=v3.2.1
ARG BUILD_DATE=2026-09-16T09:08:24Z
LABEL org.opencontainers.image.title=Subscription Tracker org.opencontainers.image.source=https://forgejo.darrenjack.co.uk/darren/subscription-tracker org.opencontainers.image.revision=f348ce41c3e20ecc163e657f04007fe4b377ebeb org.opencontainers.image.version=v3.2.1 org.opencontainers.image.created=2026-09-16T09:08:24Z
WORKDIR /app
ENV NODE_ENV=production PORT=4000 DATA_DIR=/app/data PUID=1000 PGID=1000
RUN |3 VCS_REF=f348ce41c3e20ecc163e657f04007fe4b377ebeb APP_VERSION=v3.2.1 BUILD_DATE=2026-09-16T09:08:24Z /bin/sh -c apt-get update && apt-get install -y --no-install-recommends gosu libstdc++6 && rm -rf /var/lib/apt/lists/* # buildkit
COPY /usr/local/bin/node /usr/local/bin/node # buildkit
COPY /usr/local/LICENSE /usr/local/share/licenses/node/LICENSE # buildkit
COPY /app/apps/server ./apps/server # buildkit
COPY /app/apps/server/dist ./apps/server/dist # buildkit
COPY /app/apps/web/dist ./apps/web/dist # buildkit
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
RUN |3 VCS_REF=f348ce41c3e20ecc163e657f04007fe4b377ebeb APP_VERSION=v3.2.1 BUILD_DATE=2026-09-16T09:08:24Z /bin/sh -c mkdir -p /app/data && sed -i 's/\r$//' /usr/local/bin/docker-entrypoint.sh && chmod +x /usr/local/bin/docker-entrypoint.sh && chown -R 1000:1000 /app # buildkit
VOLUME [/app/data]
EXPOSE [4000/tcp]
HEALTHCHECK {Test:[CMD-SHELL node -e "fetch('http://127.0.0.1:'+process.env.PORT+'/api/health').then((r) => process.exit(r.ok ? 0 : 1)).catch(() => process.exit(1))"] Interval:30s Timeout:5s StartPeriod:10s StartInterval:0s Retries:3}
ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["node" "apps/server/dist/index.js"]

Labels

Key Value
org.opencontainers.image.created 2026-09-16T09:08:24Z
org.opencontainers.image.description Minimal shared Ubuntu 26.04 foundation
org.opencontainers.image.revision f348ce41c3e20ecc163e657f04007fe4b377ebeb
org.opencontainers.image.source https://forgejo.darrenjack.co.uk/darren/subscription-tracker
org.opencontainers.image.title Subscription Tracker
org.opencontainers.image.version v3.2.1
Details
Container
2026-09-16 10:14:16 +01:00
9
OCI / Docker
linux/amd64
141 MiB
Versions (8) View all
latest 2026-09-18
3.2.4 2026-09-18
3.2.3 2026-09-16
3.2.2 2026-09-16
beta 2026-09-16