b471a5d8e3
The new storagenode base image version contains the fix for the failing "processes" supervisord event listener. Resolves https://github.com/storj/storj/issues/4772 Change-Id: I6d67aa6f85ee33cd9abe6a663e4f9a84ea57fdbf
25 lines
717 B
Docker
25 lines
717 B
Docker
ARG DOCKER_ARCH
|
|
ARG DOCKER_PLATFORM
|
|
|
|
FROM --platform=${DOCKER_PLATFORM:-linux/amd64} storjlabs/storagenode-base:af1f0aa94-${DOCKER_ARCH:-amd64}
|
|
ARG TAG
|
|
ARG GOARCH
|
|
ARG VERSION_SERVER_URL
|
|
ENV GOARCH ${GOARCH:-amd64}
|
|
ENV VERSION_SERVER_URL ${VERSION_SERVER_URL:-https://version.storj.io}
|
|
EXPOSE 28967
|
|
EXPOSE 14002
|
|
# copy the files individually to avoid overriding the permissions on the folders
|
|
COPY cmd/storagenode/docker/entrypoint /entrypoint
|
|
COPY cmd/storagenode/docker/app/dashboard.sh /app/dashboard.sh
|
|
COPY cmd/storagenode/docker/bin/systemctl /bin/systemctl
|
|
WORKDIR /app
|
|
ENTRYPOINT ["/entrypoint"]
|
|
|
|
ENV ADDRESS="" \
|
|
EMAIL="" \
|
|
WALLET="" \
|
|
STORAGE="2.0TB" \
|
|
SETUP="false" \
|
|
AUTO_UPDATE="true"
|