15 lines
376 B
Docker
15 lines
376 B
Docker
FROM plugins/base:linux-arm64
|
|
|
|
LABEL maintainer="Bo-Yi Wu <appleboy.tw@gmail.com>" \
|
|
org.label-schema.name="Gorush" \
|
|
org.label-schema.vendor="Bo-Yi Wu" \
|
|
org.label-schema.schema-version="1.0"
|
|
|
|
COPY release/linux/arm64/gorush /bin/
|
|
|
|
EXPOSE 8088 9000
|
|
HEALTHCHECK --start-period=2s --interval=10s --timeout=5s \
|
|
CMD ["/bin/gorush", "--ping"]
|
|
|
|
ENTRYPOINT ["/bin/gorush"]
|