|
|
|
|
|
by RoseyWasTaken
670 days ago
|
|
The docker-compose.yaml file is where you specify the ports you want to expose. It looks like by default it's 5000:5000 (5000 outside and inside the container). You will need to change it and then run docker-compose up -d. You can change it to something like 5133:5000 and access the instance through localhost:5133 |
|