2022-08-02 19:17:31 +00:00
|
|
|
FROM golang:1.19-alpine as builder
|
2021-05-10 07:13:36 +00:00
|
|
|
RUN apk add git g++ fuse
|
2020-03-02 02:23:07 +00:00
|
|
|
RUN mkdir -p /go/src/github.com/chrislusf/
|
2022-07-29 07:17:28 +00:00
|
|
|
RUN git clone https://github.com/seaweedfs/seaweedfs /go/src/github.com/seaweedfs/seaweedfs
|
2020-12-17 17:41:33 +00:00
|
|
|
ARG BRANCH=${BRANCH:-master}
|
2022-05-14 13:40:32 +00:00
|
|
|
ARG TAGS
|
2022-07-29 07:17:28 +00:00
|
|
|
RUN cd /go/src/github.com/seaweedfs/seaweedfs && git checkout $BRANCH
|
|
|
|
RUN cd /go/src/github.com/seaweedfs/seaweedfs/weed \
|
|
|
|
&& export LDFLAGS="-X github.com/seaweedfs/seaweedfs/weed/util.COMMIT=$(git rev-parse --short HEAD)" \
|
2022-05-14 13:40:32 +00:00
|
|
|
&& CGO_ENABLED=0 go install -tags "$TAGS" -ldflags "-extldflags -static ${LDFLAGS}"
|
2020-03-02 02:23:07 +00:00
|
|
|
|
2020-01-25 16:17:59 +00:00
|
|
|
FROM alpine AS final
|
|
|
|
LABEL author="Chris Lu"
|
2021-05-10 07:13:36 +00:00
|
|
|
COPY --from=builder /go/bin/weed /usr/bin/
|
2020-01-25 16:17:59 +00:00
|
|
|
RUN mkdir -p /etc/seaweedfs
|
2022-07-29 07:17:28 +00:00
|
|
|
COPY --from=builder /go/src/github.com/seaweedfs/seaweedfs/docker/filer.toml /etc/seaweedfs/filer.toml
|
|
|
|
COPY --from=builder /go/src/github.com/seaweedfs/seaweedfs/docker/entrypoint.sh /entrypoint.sh
|
2020-12-28 21:54:02 +00:00
|
|
|
RUN apk add fuse # for weed mount
|
2020-01-25 16:17:59 +00:00
|
|
|
|
|
|
|
# volume server gprc port
|
|
|
|
EXPOSE 18080
|
|
|
|
# volume server http port
|
|
|
|
EXPOSE 8080
|
|
|
|
# filer server gprc port
|
|
|
|
EXPOSE 18888
|
|
|
|
# filer server http port
|
|
|
|
EXPOSE 8888
|
|
|
|
# master server shared gprc port
|
|
|
|
EXPOSE 19333
|
|
|
|
# master server shared http port
|
|
|
|
EXPOSE 9333
|
|
|
|
# s3 server http port
|
|
|
|
EXPOSE 8333
|
2021-02-01 06:57:30 +00:00
|
|
|
# webdav server http port
|
|
|
|
EXPOSE 7333
|
2020-01-25 16:17:59 +00:00
|
|
|
|
|
|
|
RUN mkdir -p /data/filerldb2
|
|
|
|
|
|
|
|
VOLUME /data
|
2021-11-13 01:21:49 +00:00
|
|
|
WORKDIR /data
|
2020-01-25 16:17:59 +00:00
|
|
|
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|