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