Run an apache website that reports the time and the ip address of the system.
$ export HAB_DOCKER_OPTS="-p 8000:80"
$ hab studio enter
$ build
$ hab svc start YOURORG/webapp
Visit the site in your browser at http://localhost:8000
- Build the Habitat package and export it to Docker
$ hab studio enter
$ build
$ hab pkg export docker YOURORG/webapp
$ exit
$ docker run -p 8000:80 YOURORG/webapp