I’m running nocodb using docker-compose, namely PostgreSQL docker-compose. I want to run it on another port than the default 8080 so in the ports
section I changed it to:
ports:
- "8090:8090"
But it did not work!!
Apparently it has to be like this:
ports:
- "8090:8080"
You should change your docker-compose.yml like this as first port stays for HOST and second one for CONTAINER. So you can achieve the result you want with this change.
Was this helpful?
0 / 0