123456789101112131415161718 |
- version: "3.7"
- include:
- - ../docker-compose.networks.yml
- services:
- redisrv:
- image: redis:alpine
- ports:
- - ${SHOP_REDIS_PORT}:6379
- volumes:
- - ../conf/etc/localtime:/etc/localtime:ro
- - ../conf/redis/6379.conf:/etc/redis/redis.conf
- - /mnt/redisdata:/data
- container_name: "panda-redis"
- command: [redis-server,"/etc/redis/redis.conf"]
- networks:
- - ${DOCKER_NET_NAME}
|