You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
557 B
29 lines
557 B
version: '3.6'
|
|
|
|
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:
|