mirror of
https://github.com/PlayEdu/docker-compose.git
synced 2025-06-06 14:44:07 +08:00
9 lines
150 B
Docker
9 lines
150 B
Docker
FROM redis:7.0.12
|
|
|
|
COPY redis.conf /usr/local/etc/redis/redis.conf
|
|
|
|
VOLUME /data
|
|
|
|
EXPOSE 6379
|
|
|
|
CMD ["redis-server", "/usr/local/etc/redis/redis.conf"] |