How to change running port on localhost

Hello comunity, sorry if the question it’s sounds stupid… I need to run Twake app on a different port on localhost. I’ve to change only the external port on the docker-compose.yml file?

Let say if I want to run on port 8200 what I have to change?

Hi @lorenzopratesi and welcome to Twake.
To change the port you need to edit the docker-compose.yml file you use (probably docker-compose.onpremise.mongo.yml) and you will see something like:

ports:
  - 3000:3000

Change it to

ports:
  - 8200:3000