nur (sha256:6042a494917dd9660098cc15a046a1f8551f682ca78e222e250a57423eaa3019)
Published 2025-12-10 12:29:37 +00:00 by rizary
Installation
docker pull git.rizilab.com/rizilab/nur@sha256:6042a494917dd9660098cc15a046a1f8551f682ca78e222e250a57423eaa3019sha256:6042a494917dd9660098cc15a046a1f8551f682ca78e222e250a57423eaa3019Image layers
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1765152000' |
| 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 groupadd -r nur && useradd -r -g nur nur # buildkit |
| WORKDIR /app |
| COPY /app/target/release/nur /usr/local/bin/nur # buildkit |
| COPY crates/nur/config /app/config # buildkit |
| COPY docker/config/nur.docker.toml /app/config/nur.toml # buildkit |
| RUN /bin/sh -c mkdir -p /app/certs /app/.logs && chown -R nur:nur /app # buildkit |
| USER nur |
| ENV RUST_LOG=info |
| ENV CONFIG_PATH=/app/config/nur.toml |
| EXPOSE [8003/tcp] |
| HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8003/health || exit 1"] "30s" "10s" "40s" "0s" '\x03'} |
| CMD ["nur"] |