mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
add zoonavigator
This commit is contained in:
parent
910037364e
commit
308237e3ad
@ -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
8
zoonavigator/README.md
Normal 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
|
21
zoonavigator/docker-compose.yml
Normal file
21
zoonavigator/docker-compose.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user