mirror of
https://github.com/goharbor/harbor
synced 2025-04-18 19:06:48 +00:00

Use non-root user to run the service within these docker images, and provide HEALTHCHECK mechanism.
14 lines
328 B
Docker
14 lines
328 B
Docker
FROM vmware/photon:1.0
|
|
|
|
RUN tdnf distro-sync -y || echo \
|
|
&& tdnf install -y nginx \
|
|
&& ln -sf /dev/stdout /var/log/nginx/access.log \
|
|
&& ln -sf /dev/stderr /var/log/nginx/error.log \
|
|
&& tdnf clean all
|
|
|
|
EXPOSE 80
|
|
VOLUME /var/cache/nginx /var/log/nginx /run
|
|
STOPSIGNAL SIGQUIT
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|