mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
11 lines
179 B
YAML
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
|