tanner, snare, deps

This commit is contained in:
Marco Ochse
2018-05-26 23:09:31 +00:00
parent 1b5e39e448
commit 88e252fbfb
12 changed files with 549 additions and 0 deletions

View File

@ -0,0 +1,18 @@
FROM redis:alpine
# Include dist
ADD dist/ /root/dist/
# Setup apt
RUN apk -U --no-cache add \
redis && \
cp /root/dist/redis.conf /etc && \
# Clean up
rm -rf /root/* && \
rm -rf /tmp/* /var/tmp/* && \
rm -rf /var/cache/apk/*
# Start conpot
CMD redis-server /etc/redis.conf

2
docker/tanner/redis/dist/redis.conf vendored Normal file
View File

@ -0,0 +1,2 @@
bind 0.0.0.0
protected-mode no