Fix permission deny issue when Redis starting

This commit changes the ownership of directory that Redis uses to user redis when starting up
This commit is contained in:
Wenkai Yin 2018-07-13 13:48:50 +08:00
parent f7a29363ed
commit e0f2a3d5ce

View File

@ -1,12 +1,10 @@
FROM vmware/photon:1.0
RUN tdnf distro-sync -y \
&& tdnf install -y redis sudo \
&& mkdir /data \
&& chown redis:redis /data
&& tdnf install -y redis sudo
VOLUME /data
WORKDIR /data
VOLUME /var/lib/redis
WORKDIR /var/lib/redis
COPY docker-entrypoint.sh /usr/bin/
COPY redis.conf /etc/redis.conf
RUN chmod +x /usr/bin/docker-entrypoint.sh \