Skip to content

Instantly share code, notes, and snippets.

@elkozmon
Last active July 18, 2022 01:18
Show Gist options
  • Save elkozmon/85a3eaee0f0cc2c613c932f0d7745180 to your computer and use it in GitHub Desktop.
Save elkozmon/85a3eaee0f0cc2c613c932f0d7745180 to your computer and use it in GitHub Desktop.
Docker compose file for ZooNavigator with Zookeeper
version: '2.1'
services:
web:
image: elkozmon/zoonavigator-web:latest
container_name: zoonavigator-web
ports:
- "8000:8000"
environment:
API_HOST: "api"
API_PORT: 9000
depends_on:
- api
restart: always
api:
image: elkozmon/zoonavigator-api:latest
container_name: zoonavigator-api
environment:
SERVER_HTTP_PORT: 9000
depends_on:
- zookeeper
restart: always
zookeeper:
image: zookeeper:3.5
container_name: zookeeper
ports:
- "2181:2181"
restart: always
@fairmutex
Copy link

Yep, text selection is off in Chrome. IE and FF works

@elkozmon
Copy link
Author

Yep, text selection is off in Chrome. IE and FF works

Thanks, I'll try to fix that

@Bharathkumarraju
Copy link

@elkozmon i get this error

bahrathkumaraju@Bahrathkumarajus-MacBook-Pro ~ % docker pull elkozmon/zoonavigator-web:latest
Error response from daemon: pull access denied for elkozmon/zoonavigator-web, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
bahrathkumaraju@Bahrathkumarajus-MacBook-Pro ~ %

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment