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.
21 lines
416 B
21 lines
416 B
version: '3.3'
|
|
|
|
services:
|
|
redis-service:
|
|
image: redis:latest
|
|
container_name: redis-service
|
|
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
|
|
networks:
|
|
app-network:
|
|
name: gk.sunday.redis
|
|
driver: bridge
|
|
|
|
|