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.
|
version: '3.3'
|
|
|
|
services:
|
|
redis-service:
|
|
image: redis:latest
|
|
restart: always
|
|
ports:
|
|
- "6379:6379"
|
|
volumes:
|
|
- ./:/root/redis
|
|
- ./redis.conf:/usr/local/etc/redis/redis.conf
|
|
environment:
|
|
- REDIS_PASSWORD=A@1qaz2wsxA@
|
|
- REDIS_PORT=6379
|
|
- REDIS_DATABASES=16
|
|
|