You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zeus/docker/redis/docker-compose.yml

18 lines
287 B
YAML

version: '3'
services:
redis:
image: redis:3
container_name: "redis3"
restart: always
ports:
- 6379:6379
volumes:
- ./data:/data
networks:
- "redisnet"
# command: redis-server --appendonly yes
networks:
redisnet:
driver: bridge