Run a container named blue-app
using image kodekloud/simple-webapp
and set the environment variable APP_COLOR
to blue
. Make the application available on port 38282
on the host. The application listens on port 8080
.
for this task
i am using cmd as
docker run -d -p -e 38282:8080 ALL_COLOR=‘blue’ kodekloud/simple-webapp but it is not working.