1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/redis/docker-compose.yml

11 lines
179 B
YAML
Raw Normal View History

2022-01-07 12:20:29 +02:00
version: "3.8"
services:
redis:
image: redis:6-alpine
command: --save 900 1
ports:
- "6379:6379"
volumes:
- ./data:/data
restart: unless-stopped