2022-04-18 02:34:03 -07:00
|
|
|
FROM golang:1.18-alpine as builder
|
2021-05-10 00:13:36 -07:00
|
|
|
RUN apk add git g++ fuse
|
2020-03-01 18:23:07 -08:00
|
|
|
RUN mkdir -p /go/src/github.com/chrislusf/
|
2022-07-29 00:17:28 -07:00
|
|
|
RUN git clone https://github.com/seaweedfs/seaweedfs /go/src/github.com/seaweedfs/seaweedfs
|
2020-12-17 19:41:33 +02:00
|
|
|
ARG BRANCH=${BRANCH:-master}
|
2022-05-14 18:40:32 +05:00
|
|
|
ARG TAGS
|
2022-07-29 00:17:28 -07: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 18:40:32 +05:00
|
|
|
&& CGO_ENABLED=0 go install -tags "$TAGS" -ldflags "-extldflags -static ${LDFLAGS}"
|
2020-03-01 18:23:07 -08:00
|
|
|
|
2020-01-25 08:17:59 -08:00
|
|
|
FROM alpine AS final
|
|
|
|
LABEL author="Chris Lu"
|
2021-05-10 00:13:36 -07:00
|
|
|
COPY --from=builder /go/bin/weed /usr/bin/
|
2020-01-25 08:17:59 -08:00
|
|
|
RUN mkdir -p /etc/seaweedfs
|
2022-07-29 00:17:28 -07: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 13:54:02 -08:00
|
|
|
RUN apk add fuse # for weed mount
|
2020-01-25 08:17:59 -08: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-01-31 22:57:30 -08:00
|
|
|
# webdav server http port
|
|
|
|
EXPOSE 7333
|
2020-01-25 08:17:59 -08:00
|
|
|
|
|
|
|
RUN mkdir -p /data/filerldb2
|
|
|
|
|
|
|
|
VOLUME /data
|
2021-11-12 17:21:49 -08:00
|
|
|
WORKDIR /data
|
2020-01-25 08:17:59 -08:00
|
|
|
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|