Skip to content

Instantly share code, notes, and snippets.

@vicentebolea
Created September 15, 2017 08:58
Show Gist options
  • Select an option

  • Save vicentebolea/16c8e6a218b9d74a1adc5ac8ee712d43 to your computer and use it in GitHub Desktop.

Select an option

Save vicentebolea/16c8e6a218b9d74a1adc5ac8ee712d43 to your computer and use it in GitHub Desktop.
Zookeeper docker composer + web UI
version: '2.1'
services:
zoo1:
image: 31z4/zookeeper
container_name: zookeeper-server
#restart: always
ports:
- "2181:2181"
web:
image: elkozmon/zoonavigator-web:latest
container_name: zoonavigator-web
ports:
- "8000:8000"
environment:
API_HOST: "api"
API_PORT: 9000
links:
- api
depends_on:
- api
restart: always
api:
image: elkozmon/zoonavigator-api:latest
container_name: zoonavigator-api
environment:
SERVER_HTTP_PORT: 9000
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment