docker-compose.yml 407 B

123456789101112131415161718
  1. version: "3"
  2. services:
  3. redis:
  4. image: bitnami/redis:6.2
  5. hostname: redis
  6. container_name: redis
  7. environment:
  8. - ALLOW_EMPTY_PASSWORD=yes
  9. ports:
  10. - "6379:6379"
  11. redis-commander:
  12. container_name: redis-commander
  13. hostname: redis-commander
  14. image: rediscommander/redis-commander:latest
  15. environment:
  16. - REDIS_HOSTS=local:redis:6379
  17. ports:
  18. - "8085:8081"