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.
A collection of software packages commonly used in Flask applications.
- Flask Pack Mini - The lightweight version.
- Flask Pack Base - The standard version.
- Flask Pack Plus - The heavy duty version.
A collection of software packages commonly used in Node applications.
- Node Pack Mini - The lightweight version.
- Node Pack Base - The standard version.
- Node Pack Plus - The heavy duty version.
A collection of software packages commonly used in Raspberry Pi projects.
- Pi Pack Mini - The lightweight version.
- Pi Pack Base - The standard version.
- Pi Pack Plus - The heavy duty version.
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.
docker login
docker build . -t <IMAGE_NAME>
docker tag <IMAGE_ID> <USERNAME>/<REPOSITORY>:<TAG>
docker push <USERNAME>/<REPOSITORY>:<TAG>