Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dockerhub sample uses the wrong port #203

Closed
Trolldemorted opened this issue Jun 28, 2019 · 1 comment
Closed

dockerhub sample uses the wrong port #203

Trolldemorted opened this issue Jun 28, 2019 · 1 comment
Assignees
Labels
Milestone

Comments

@Trolldemorted
Copy link

Request Type

Bug

Work Environment

Question Answer
OS version (server) -
OS version (client) -
Cortex version / git hash -
Package Type Docker
Browser type & version -

Problem Description

This is the sample docker-compose file on dockerhub:

version: "2"
services:
  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:5.6.0
    environment:
      - http.host=0.0.0.0
      - transport.host=0.0.0.0
      - xpack.security.enabled=false
      - cluster.name=hive
      - script.inline=true
      - thread_pool.index.queue_size=100000
      - thread_pool.search.queue_size=100000
      - thread_pool.bulk.queue_size=100000
    ulimits:
      nofile:
        soft: 65536
        hard: 65536
  cortex:
    image: thehiveproject/cortex:latest
    ports:
      - "0.0.0.0:9001:9000"
  thehive:
    image: thehiveproject/thehive:latest
    depends_on:
      - elasticsearch
      - cortex
    ports:
      - "0.0.0.0:9000:9000"

As you can see, it maps - "0.0.0.0:9001:9000" where - "9001:9001" would be correct. If this is the wrong repository please excuse me, but I couldn't find where your docker documentation lives.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants