Spotter-VM/redis/lxcfile

19 lines
429 B
Plaintext
Raw Normal View History

2018-09-05 17:41:38 +02:00
IMAGE redis
LAYER shared/alpine
LAYER redis/redis
2018-09-12 16:08:10 +02:00
RUN EOF
2018-09-05 17:41:38 +02:00
# Create OS user (which will be picked up later by apk add)
addgroup -S -g 6379 redis
adduser -S -u 6379 -h /var/lib/redis -s /bin/false -g redis -G redis redis
# Install Redis
apk --no-cache add redis
2018-09-12 16:08:10 +02:00
EOF
2018-09-05 17:41:38 +02:00
MOUNT /srv/redis/conf/redis.conf etc/redis.conf
MOUNT /srv/redis/data var/lib/redis
USER 6379 6379
2018-09-07 15:47:44 +02:00
CMD /usr/bin/redis-server /etc/redis.conf