setup-redis/Dockerfile

4 lines
117 B
Docker
Raw Normal View History

2019-12-18 09:30:03 +00:00
FROM docker:stable
COPY start-redis.sh /start-redis.sh
RUN chmod +x /start-redis.sh
2019-12-18 09:54:17 +00:00
ENTRYPOINT ["/start-redis.sh"]