Spotter-VM/lxc-services/redis/lxcfile

15 lines
339 B
Plaintext
Raw Normal View History

2019-09-18 11:29:58 +02:00
IMAGE redis_4.0.12-190620
2019-11-30 09:59:32 +01:00
FROM alpine3.9_3.9.4-190620
2018-09-05 17:41:38 +02:00
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
USER 6379 6379
2018-09-13 16:21:16 +02:00
CMD redis-server /etc/redis.conf