add zoonavigator

This commit is contained in:
kev 2019-01-09 14:52:04 +08:00
parent 910037364e
commit 308237e3ad
3 changed files with 30 additions and 0 deletions

View File

@ -299,6 +299,7 @@ A collection of delicious docker recipes.
- [x] centurylink/watchtower
- [x] wekanteam/wekan
- [x] zookeeper
- [x] elkozmon/zoonavigator
## auto-completion

8
zoonavigator/README.md Normal file
View File

@ -0,0 +1,8 @@
zoonavigator
============
ZooNavigator is a web-based browser & editor for ZooKeeper with many features.
It is an open source project and the source code is available on [GitHub][1].
[1]: https://github.com/elkozmon/zoonavigator

View File

@ -0,0 +1,21 @@
version: '2.1'
services:
web:
image: elkozmon/zoonavigator-web:0.5.1
ports:
- "8000:8000"
environment:
- WEB_HTTP_PORT=8000
- API_HOST=api
- API_PORT=9000
depends_on:
- api
restart: always
api:
image: elkozmon/zoonavigator-api:0.5.1
environment:
- API_HTTP_PORT=9000
restart: always