Complete the missing line of code to map port 8080 on the host to port 80 in the container for a service named "web" in Docker Compose.
version: "3"
services:
web:
image: nginx:latest
ports:
- <missing code line>Complete the missing line of code to map port 8080 on the host to port 80 in the container for a service named "web" in Docker Compose.
version: "3"
services:
web:
image: nginx:latest
ports:
- <missing code line>Create a free account to access the full topic