1234567891011121314151617 |
- version: '1.0'
- services:
- redis:
- hostname: redis
- image: hfy_redis:1.0
- container_name: redis
- restart: unless-stoppend
- command: redis-server /etc/redis.conf
- environment:
- - TZ=Asia/Shanghai
- volumes:
- - /data/redis:/data/redis
- - ./logs:/logs
- - ./redis.conf:/etc/redis.conf
- ports:
- - "6890:6889"
|