edclrk / dockerstart

Playing around with Docker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dockerstart

With Docker already installed:

Build the image:

docker build -t nginx-hello .

Start a container based on the image:

docker run --name some-nginx -d -p 8080:80 nginx-hello

Nginx should be running and accessible via:

open "http://localhost:8080/HelloWorld.html"

About

Playing around with Docker


Languages

Language:Shell 64.0%Language:HTML 36.0%