mirror of
https://github.com/goharbor/harbor.git
synced 2024-10-31 23:59:32 +01:00
1b6b47f860
* 127.0.0.1 to localhost * listening net addr add ipv6 format Signed-off-by: DQ <dengq@vmware.com>
21 lines
857 B
Docker
21 lines
857 B
Docker
ARG harbor_base_image_version
|
|
ARG harbor_base_namespace
|
|
FROM ${harbor_base_namespace}/harbor-registry-base:${harbor_base_image_version}
|
|
|
|
COPY ./make/photon/common/install_cert.sh /home/harbor
|
|
COPY ./make/photon/registry/entrypoint.sh /home/harbor
|
|
COPY ./make/photon/registry/binary/registry /usr/bin/registry_DO_NOT_USE_GC
|
|
|
|
RUN chown -R harbor:harbor /etc/pki/tls/certs \
|
|
&& chown harbor:harbor /home/harbor/entrypoint.sh && chmod u+x /home/harbor/entrypoint.sh \
|
|
&& chown harbor:harbor /home/harbor/install_cert.sh && chmod u+x /home/harbor/install_cert.sh \
|
|
&& chown harbor:harbor /usr/bin/registry_DO_NOT_USE_GC && chmod u+x /usr/bin/registry_DO_NOT_USE_GC
|
|
|
|
HEALTHCHECK CMD curl --fail -s http://localhost:5000 || curl -k --fail -s https://localhost:5443 || exit 1
|
|
|
|
USER harbor
|
|
|
|
ENTRYPOINT ["/home/harbor/entrypoint.sh"]
|
|
|
|
VOLUME ["/storage"]
|