10 lines
177 B
YAML
10 lines
177 B
YAML
FROM redis:5
|
|
|
|
COPY agile-redis-entrypoint.sh /usr/local/bin/
|
|
|
|
RUN chmod +x /usr/local/bin/agile-redis-entrypoint.sh
|
|
|
|
VOLUME /etc/redis
|
|
|
|
ENTRYPOINT ["agile-redis-entrypoint.sh"]
|