1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/redis/docker-compose.yml

9 lines
138 B
YAML
Raw Normal View History

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