1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-10 11:10:29 +02:00
dockerfiles/redis/docker-compose.yml

9 lines
138 B
YAML
Raw Normal View History

2017-01-19 16:06:07 +02:00
redis:
image: redis:alpine
2018-01-20 22:54:31 +02:00
command: --save 900 1
2017-01-19 16:06:07 +02:00
ports:
- "127.0.0.1:6379:6379"
volumes:
- ./data:/data
restart: always