diff --git a/README.md b/README.md index ae539fe..231d017 100644 --- a/README.md +++ b/README.md @@ -299,6 +299,7 @@ A collection of delicious docker recipes. - [x] centurylink/watchtower - [x] wekanteam/wekan - [x] zookeeper +- [x] elkozmon/zoonavigator ## auto-completion diff --git a/zoonavigator/README.md b/zoonavigator/README.md new file mode 100644 index 0000000..1089ae5 --- /dev/null +++ b/zoonavigator/README.md @@ -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 diff --git a/zoonavigator/docker-compose.yml b/zoonavigator/docker-compose.yml new file mode 100644 index 0000000..7514cb1 --- /dev/null +++ b/zoonavigator/docker-compose.yml @@ -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