123456789101112131415161718192021 |
- version: "3.7"
- services:
- redisrv:
- image: redis:alpine
- ports:
- - "6379:6379"
- volumes:
- - ../conf/etc/localtime:/etc/localtime:ro
- - ../conf/redis/6379.conf:/etc/redis/redis.conf
- - /mnt/redisdata:/data
- container_name: "gx-redis"
- command: [redis-server,"/etc/redis/redis.conf"]
- extra_hosts:
- - "docker.hostip:172.17.0.1"
- networks:
- - net_gxshop
- networks:
- net_gxshop:
- external: true
|