Skip to content

WSStudios/docker-images

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Wonderstorm Docker Images

These are the various docker images that Wonderstorm uses.

Any changes to this repo are automatically built and pushed to docker hub.

Note, this is a public repo

Images

See Docker's tags for all images

Versions

If you tag a commit v1.0.1 then we will also push a build tagged as ws-amazoncorretto-11-1.0.1

Adding another image to be built

Manually building and pushing

# NOTE: you'll need to run "docker login" and login to an account with push permissions to "wonderstorm/docker-images"

#cd to the image you wish to build
cd ws-amazoncorretto-11/
# edit the dockerfile if needed
vim Dockerfile
# this builds image locally and puts it in your local cache
docker build --tag wonderstorm/docker-images:ws-amazoncorretto-11 .
# this pushes the image to wonderstorm's public docker hub registry where we store it.
docker push wonderstorm/docker-images:ws-amazoncorretto-11