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:
2023-02-08 11:14:09 +02:00
image: redis:7-alpine
2022-01-07 12:20:29 +02:00
command: --save 900 1
ports:
- "6379:6379"
volumes:
- ./data:/data
restart: unless-stopped