mbigras / dockerfiles

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dockerfiles

Examples of Dockerfiles for different languages

Usage

git clone https://github.com/mbigras/dockerfiles
cd dockerfiles/go
docker build -t fooimage .
docker run \
	--name=foocontainer \
	--detach \
	--publish=5000:5000 \
	--env=PORT=5000 \
	fooimage
curl localhost:5000/hello/world
docker rm -f foocontainer

About


Languages

Language:Dockerfile 40.2%Language:Go 26.1%Language:Ruby 25.8%Language:Python 7.9%