mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-07 02:59:50 +01:00
8b7f1ae4c0
Signed-off-by: Qian Deng <dengq@vmware.com>
20 lines
469 B
Docker
20 lines
469 B
Docker
FROM photon:2.0
|
|
|
|
RUN tdnf install sudo nginx -y >> /dev/null\
|
|
&& tdnf clean all \
|
|
&& groupadd -r -g 10000 nginx && useradd --no-log-init -r -g 10000 -u 10000 nginx \
|
|
&& ln -sf /dev/stdout /var/log/nginx/access.log \
|
|
&& ln -sf /dev/stderr /var/log/nginx/error.log
|
|
|
|
VOLUME /var/cache/nginx /var/log/nginx /run
|
|
|
|
EXPOSE 8080
|
|
|
|
STOPSIGNAL SIGQUIT
|
|
|
|
HEALTHCHECK CMD curl --fail -s http://127.0.0.1:8080 || exit 1
|
|
|
|
USER nginx
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|