Wrong Port Mapping in docker-compose File
In our docker-compose.yaml file, the port mapping configuration is currently:
ports:
- "8080:80"
But must be:
ports:
- "80:80"
In our docker-compose.yaml file, the port mapping configuration is currently:
ports:
- "8080:80"
But must be:
ports:
- "80:80"