fmartinou / whats-up-docker

What's up Docker ( aka WUD ) gets you notified when a new version of your Docker Container is available.
https://fmartinou.github.io/whats-up-docker
MIT License
1.02k stars 33 forks source link

Web Ui on a different port #240

Closed conors06 closed 1 year ago

conors06 commented 1 year ago

When I use WUD on port 3000 it loads but when I use 3002 as my dashboard is on 3000 it doesn't load? image

fmartinou commented 1 year ago

Hi,

There is a mistake In your configuration; you're mapping the port 3002 of your host with the port 3002 of the container whereas wud is listening to the port 3000.

If you want wud to be reachable on the port 3002 of your host machine, you have 2 possibilities.

  1. Just map the 3002 host port with the 3000 container port

    services:
    wud:
    ports:
      - 3002:3000
  2. Or map the 3002 host port with the 3002 container port BUT configure wud to listen to the 3002 port

    services:
    wud:
    ports:
      - 3002:3002
    environment:
      - WUD_SERVER_PORT=3002
conors06 commented 1 year ago

Thanks so much look forward to checking this out