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

14 lines
221 B

version: '3.1'
services:
redis:
container_name: redis
image: redis
restart: always
ports:
- 6379:6379
command: >
--requirepass ${REDIS_PASSWORD}
volumes:
- ./docker/redis:/data