22 lines
386 B
YAML
22 lines
386 B
YAML
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
|
|
restart: always
|
|
networks:
|
|
- shared
|
|
|
|
networks:
|
|
shared:
|