To verify that the nginx application on docker hub works as expected on VIC
1 - Docker Hub nginx Official Repository
This test requires that a vSphere server is running and available
- Deploy VIC appliance to the vSphere server
- Run an nginx container in the background and verify the server is up and running:
docker run --name nginx1 -d nginx
- Run an nginx container in the background with a mapped port:
docker run --name nginx2 -d -p 8080:80 nginx
- Run an nginx container in the background with a mapped content folder from a volume:
docker run --name nginx3 -v /some/content:/usr/share/nginx/html:ro -d nginx
- Each step should succeed, nginx should be running without error in each case
None