conduktor / kafka-stack-docker-compose

docker compose files to create a fully working kafka stack
Apache License 2.0
3.28k stars 1.27k forks source link

conduktor.yml - container name to conduktor-console #142

Closed HaJunYoo closed 7 months ago

HaJunYoo commented 7 months ago

When I try to docker compose up with full-stack.yml, I keep getting an error saying conduktor-platform is missing, so when I looked at conduktor.yml

conduktor-console:
    image: conduktor/conduktor-console:1.21.0
    ports:
      - "8080:8080"
    volumes:
      - conduktor_data:/var/conduktor
    environment:

It wasn't conduktor-platform but conduktor-console! So in full-stack.yml's

conduktor-platform:
    extends:
      service: conduktor-platform
      file: conduktor.yml

If you change this part to

conduktor-console:
    extends:
      service: conduktor-console
      file: conduktor.yml

it works normally.

lorcancooke commented 7 months ago

Hi HaJunYoo,

Glad to help here and thank you for the feedback and for let us know about this potential issue. We will look to update the full-stack yaml or potentially remove as it is out of date. Our current most up to date examples for using docker can be found here https://docs.conduktor.io/platform/get-started/installation/get-started/docker/#step-2-bind-the-file

For future it is best to reach out to our support via our support portal, see here https://support.conduktor.io/hc/en-gb

Regards, Lorcan

Customer Success Engineer Conduktor

AurelieMarcuzzo commented 7 months ago

Hi, a fix has been provided, thank you very much!