services:
webdis:
image: nicolas/webdis:latest
restart: always
command: /usr/local/bin/webdis /config/webdis.json
volumes:
- ./webdis.json:/config/webdis.json
networks:
- shared
depends_on:
- redis
ports:
- "127.0.0.1:7379:7379"
redis:
image: redis:6.2.6
shared: