| 123456789101112131415161718 |
- version: "3"
- services:
- redis:
- image: bitnami/redis:6.2
- hostname: redis
- container_name: redis
- environment:
- - ALLOW_EMPTY_PASSWORD=yes
- ports:
- - "6379:6379"
- redis-commander:
- container_name: redis-commander
- hostname: redis-commander
- image: rediscommander/redis-commander:latest
- environment:
- - REDIS_HOSTS=local:redis:6379
- ports:
- - "8085:8081"
|