My understanding is if you want to access the app on port 3000, you would use `docker run -d -p 3000:8080 ...` for a Docker command. For Docker Compose, it's: ``` nginx_recipes: ports: - 3000:80 ```