https://github.com/git-lfs/lfs-test-server
895
Runtime image for git-lfs/lfs-test-server with slight modifications:
FROM golang:1.23.9 AS build
MAINTAINER GitHub, Inc.
WORKDIR /go/src/github.com/git-lfs/lfs-test-server
COPY . .
RUN go build
FROM debian:bookworm-slim
COPY --from=build /go/src/github.com/git-lfs/lfs-test-server/lfs-test-server /usr/bin/lfs-test-server
WORKDIR /data/lfs-server
EXPOSE 8080
CMD /usr/bin/lfs-test-server
docker run \
-e LFS_ADMINUSER=admin \
-e LFS_ADMINPASS=admin \
-v $(PWD)/data:/data/lfs-server \
-p 8080:8080 fanzeyi/lfs-test-server
Then it should be accessible at http://localhost:8080/mgmt
For configuration environment variables see:
https://github.com/git-lfs/lfs-test-server?tab=readme-ov-file#running
Content type
Image
Digest
sha256:ce5380cf8…
Size
33.6 MB
Last updated
over 1 year ago
docker pull fanzeyi/lfs-test-server