mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-06 18:50:09 +01:00
b015440074
The export is dynamical now because of introduce of internal TLS Signed-off-by: DQ <dengq@vmware.com>
14 lines
310 B
Docker
14 lines
310 B
Docker
ARG harbor_base_image_version
|
|
ARG harbor_base_namespace
|
|
FROM ${harbor_base_namespace}/harbor-nginx-base:${harbor_base_image_version}
|
|
|
|
VOLUME /var/cache/nginx /var/log/nginx /run
|
|
|
|
STOPSIGNAL SIGQUIT
|
|
|
|
HEALTHCHECK CMD curl --fail -s http://127.0.0.1:8080 || exit 1
|
|
|
|
USER nginx
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|