mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-12 21:44:37 +01:00
2cedfff4b3
This change reworked the vmware/harbor-db image to build it on top of vmware/mariadb-photon. Also made minor change in the entrypoint script of mariadb image to execute upgrade script during bootstrap, and fix a file permission issue in the bootstrap scripts.
14 lines
311 B
Docker
14 lines
311 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 \
|
|
&& mkdir -p /var/run \
|
|
&& tdnf clean all
|
|
|
|
EXPOSE 80
|
|
STOPSIGNAL SIGQUIT
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|