1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-08 16:08:47 +00:00
dockerfiles/redis/docker-compose.yml
2022-01-07 18:20:29 +08:00

11 lines
179 B
YAML

version: "3.8"
services:
redis:
image: redis:6-alpine
command: --save 900 1
ports:
- "6379:6379"
volumes:
- ./data:/data
restart: unless-stopped