mirror of
https://github.com/nvms/prsm.git
synced 2025-12-13 07:20:52 +00:00
17 lines
334 B
YAML
17 lines
334 B
YAML
version: "3.8"
|
|
services:
|
|
redis:
|
|
image: redis:7
|
|
ports:
|
|
- "6379:6379"
|
|
command: ["redis-server", "--save", "", "--appendonly", "no"]
|
|
|
|
redis-commander:
|
|
image: rediscommander/redis-commander:latest
|
|
environment:
|
|
- REDIS_HOSTS=local:redis:6379
|
|
ports:
|
|
- "8081:8081"
|
|
depends_on:
|
|
- redis
|