28 lines
541 B
Plaintext
28 lines
541 B
Plaintext
|
services:
|
||
|
redis-ui:
|
||
|
image: marian/rebrow
|
||
|
restart: always
|
||
|
ports:
|
||
|
- "5001:5001"
|
||
|
links:
|
||
|
- redis-example:redis-example
|
||
|
redis-stack:
|
||
|
image: redis/redis-stack:latest
|
||
|
restart: always
|
||
|
ports:
|
||
|
- "8001:8001"
|
||
|
expose:
|
||
|
- 6379
|
||
|
redis-commander:
|
||
|
container_name: redis-commander
|
||
|
hostname: redis-commander
|
||
|
image: ghcr.io/joeferner/redis-commander:latest
|
||
|
restart: always
|
||
|
environment:
|
||
|
- REDIS_HOSTS=intai:redis-intai:6379
|
||
|
ports:
|
||
|
- "8081:8081"
|
||
|
|
||
|
volumes:
|
||
|
elastic:
|