Block a user
lighthouse (latest)
Published 2026-07-31 09:11:49 -04:00 by mysticmomba
Installation
docker pull git.racooncity.org/mysticmomba/lighthouse:latestsha256:70ecbca05243718ea2220103891590c75625fa04c4c39a5a4844b53e58006027
Images
| Digest | OS / Arch | Size |
|---|---|---|
| 8f57902031 | linux/arm64 | 39 MiB |
| 2264ca500d | linux/amd64 | 39 MiB |
Image Layers ( linux/arm64)
| # debian.sh --arch 'arm64' out/ 'trixie' '@1783900800' |
| ARG TARGETARCH=arm64 |
| RUN |1 TARGETARCH=arm64 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates tzdata && ln -snf /usr/share/zoneinfo/America/New_York /etc/localtime && echo "America/New_York" > /etc/timezone && rm -rf /var/lib/apt/lists/* # buildkit |
| WORKDIR /app |
| COPY /app/target/aarch64-unknown-linux-musl/release/lighthouse ./lighthouse-arm64 # buildkit |
| COPY /app/target/x86_64-unknown-linux-musl/release/lighthouse ./lighthouse-amd64 # buildkit |
| COPY /app/templates ./templates # buildkit |
| COPY /app/static ./static # buildkit |
| COPY /app/migrations ./migrations # buildkit |
| COPY /app/changelog.md ./CHANGELOG.md # buildkit |
| RUN |1 TARGETARCH=arm64 /bin/sh -c if [ "$TARGETARCH" = "arm64" ]; then mv lighthouse-arm64 lighthouse; else mv lighthouse-amd64 lighthouse; fi && rm -f lighthouse-arm64 lighthouse-amd64 # buildkit |
| RUN |1 TARGETARCH=arm64 /bin/sh -c mkdir -p /data # buildkit |
| COPY entrypoint.sh /entrypoint.sh # buildkit |
| RUN |1 TARGETARCH=arm64 /bin/sh -c chmod +x /entrypoint.sh # buildkit |
| EXPOSE [3000/tcp] |
| ENV RUST_LOG=lighthouse=info,tower_http=warn |
| ENV BIND_ADDR=0.0.0.0:3000 |
| ENTRYPOINT ["/entrypoint.sh"] |