setup-redis/Dockerfile

5 lines
115 B
Docker
Raw Normal View History

2019-12-17 12:44:54 +00:00
FROM docker:stable
2019-12-17 13:58:35 +00:00
COPY start-redis.sh /start-redis.sh
RUN chmod +x /start-redis.sh
ENTRYPOINT ["/start-redis.sh"]