1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-26 10:43:35 +02:00

Update README.md

Replacing the wrong host's port number 8080 into 80 in line 33 and 34

Signed-off-by: Ho Jin Le <jinleho@hotmail.com>
This commit is contained in:
Ho Jin Le 2023-10-29 21:15:36 +08:00
parent e6b1d2755f
commit 07aaaea8ec

View file

@ -30,8 +30,8 @@ services:
- /project/node_modules
```
The compose file defines an application with one service `vuejs`.
When deploying the application, docker compose maps port 8080 of the web service container to port 8080 of the host as specified in the file.
Make sure port 8080 on the host is not already being in use.
When deploying the application, docker compose maps port 8080 of the web service container to port 80 of the host as specified in the file.
Make sure port 80 on the host is not already being in use.
## Deploy with docker compose