2020-04-23 07:39:24 +00:00
|
|
|
FROM mcr.microsoft.com/windows/nanoserver:1809-amd64
|
2018-02-18 15:46:11 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
|
2019-03-16 03:46:37 +00:00
|
|
|
COPY release/gorush.exe C:/bin/gorush.exe
|
2019-03-16 03:37:01 +00:00
|
|
|
|
|
|
|
EXPOSE 8088 9000
|
2021-07-13 02:28:34 +00:00
|
|
|
HEALTHCHECK --start-period=1s --interval=10s --timeout=5s \
|
2018-03-17 15:07:38 +00:00
|
|
|
CMD ["\\gorush.exe", "--ping"]
|
|
|
|
|
2019-03-16 03:46:37 +00:00
|
|
|
ENTRYPOINT [ "C:\\bin\\gorush.exe" ]
|