Skip to content

jgphilpott/docker-images

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Intro

A Docker Image is a layered collection of software packages used to create a Docker Container. Only software packages installed on an image will be available for use inside the corresponding container.

Contents

A collection of software packages commonly used in Flask applications.

A collection of software packages commonly used in Raspberry Pi projects.

Publishing

If you need any help publishing your docker images to Docker Hub read this or see the steps below. For publishing docker images to GitHub read this.

Step 1 - Login

docker login

Step 2 - Build Image

docker build . -t <IMAGE_NAME>

Step 3 - Tag Image

docker tag <IMAGE_ID> <USERNAME>/<REPOSITORY>:<TAG>

Step 4 - Push Image

docker push <USERNAME>/<REPOSITORY>:<TAG>