docker-compse.yml 545 B

1234567891011121314151617
  1. version: '1.0'
  2. services:
  3. redis:
  4. hostname: redis
  5. image: hfy_redis:1.0
  6. container_name: redis
  7. restart: unless-stoppend
  8. command: redis-server /etc/redis.conf
  9. environment:
  10. - TZ=Asia/Shanghai
  11. volumes:
  12. - /data/redis:/data/redis
  13. - ./logs:/logs
  14. - ./redis.conf:/etc/redis.conf
  15. ports:
  16. - "6890:6889"