mirror of
https://github.com/goharbor/harbor.git
synced 2025-02-07 07:21:22 +01:00
15 lines
430 B
Docker
15 lines
430 B
Docker
ARG harbor_base_image_version
|
|
FROM goharbor/harbor-redis-base:${harbor_base_image_version}
|
|
|
|
VOLUME /var/lib/redis
|
|
WORKDIR /var/lib/redis
|
|
COPY ./make/photon/redis/docker-healthcheck /usr/bin/
|
|
COPY ./make/photon/redis/redis.conf /etc/redis.conf
|
|
RUN chmod +x /usr/bin/docker-healthcheck \
|
|
&& chown redis:redis /etc/redis.conf
|
|
|
|
HEALTHCHECK CMD ["docker-healthcheck"]
|
|
USER redis
|
|
EXPOSE 6379
|
|
CMD ["redis-server", "/etc/redis.conf"]
|