1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-26 00:38:37 +00:00
dockerfiles/redis/docker-compose.yml
2023-02-08 17:14:09 +08:00

11 lines
179 B
YAML

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