Block a user
forgeflow/notification-agent (b317788)
Published 2026-01-12 17:25:04 +00:00 by dfunnell
Installation
docker pull gitea.codewarp.org/tron/forgeflow/notification-agent:b317788sha256:8f1f0dbdca204549040aa7caaa0aeca951b2686f8dd8bc36f72ccded307f8563
Image Layers
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1766966400' |
| RUN /bin/sh -c apt-get update && apt-get install -y ca-certificates libssl3 curl && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c useradd -r -s /bin/false forgeflow # buildkit |
| RUN /bin/sh -c mkdir -p /etc/forgeflow /var/log/forgeflow && chown -R forgeflow:forgeflow /var/log/forgeflow # buildkit |
| COPY /build/target/release/notification-agent /usr/local/bin/ # buildkit |
| COPY notification-agent/config.toml.example /etc/forgeflow/notification-agent.toml # buildkit |
| ENV FORGEFLOW_CONFIG=/etc/forgeflow/notification-agent.toml |
| ENV RUST_LOG=info |
| USER forgeflow |
| EXPOSE map[8093/tcp:{}] |
| HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8093/health || exit 1"] "30s" "5s" "10s" '\x03'} |
| ENTRYPOINT ["/usr/local/bin/notification-agent"] |