https://github.com/jgphilpott/docker-images
A repository to share my docker images.
https://github.com/jgphilpott/docker-images
docker docker-images flask node raspberry-pi
Last synced: 4 months ago
JSON representation
A repository to share my docker images.
- Host: GitHub
- URL: https://github.com/jgphilpott/docker-images
- Owner: jgphilpott
- License: mit
- Created: 2020-10-16T18:40:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-17T10:50:03.000Z (almost 2 years ago)
- Last Synced: 2025-10-31T00:32:24.978Z (8 months ago)
- Topics: docker, docker-images, flask, node, raspberry-pi
- Language: Dockerfile
- Homepage: https://hub.docker.com/repositories/jgphilpott
- Size: 492 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Intro
A [Docker Image](https://docs.docker.com/glossary/#image) is a layered collection of software packages used to create a [Docker Container](https://docs.docker.com/glossary/#container). Only software packages installed on an image will be available for use inside the corresponding container.
# Contents
### [Flask Series](https://hub.docker.com/r/jgphilpott/flask-pack)
A collection of software packages commonly used in Flask applications.
- [Flask Pack Mini](https://github.com/jgphilpott/docker-images/tree/master/flask-series/flask-pack-mini) - The lightweight version.
- [Flask Pack Base](https://github.com/jgphilpott/docker-images/tree/master/flask-series/flask-pack-base) - The standard version.
- [Flask Pack Plus](https://github.com/jgphilpott/docker-images/tree/master/flask-series/flask-pack-plus) - The heavy duty version.
### [Node Series](https://hub.docker.com/r/jgphilpott/node-pack)
A collection of software packages commonly used in Node applications.
- [Node Pack Mini](https://github.com/jgphilpott/docker-images/tree/master/node-series/node-pack-mini) - The lightweight version.
- [Node Pack Base](https://github.com/jgphilpott/docker-images/tree/master/node-series/node-pack-base) - The standard version.
- [Node Pack Plus](https://github.com/jgphilpott/docker-images/tree/master/node-series/node-pack-plus) - The heavy duty version.
### [Pi Series](https://hub.docker.com/r/jgphilpott/pi-pack)
A collection of software packages commonly used in Raspberry Pi projects.
- [Pi Pack Mini](https://github.com/jgphilpott/docker-images/tree/master/pi-series/pi-pack-mini) - The lightweight version.
- [Pi Pack Base](https://github.com/jgphilpott/docker-images/tree/master/pi-series/pi-pack-base) - The standard version.
- [Pi Pack Plus](https://github.com/jgphilpott/docker-images/tree/master/pi-series/pi-pack-plus) - The heavy duty version.
# Publishing
If you need any help publishing your docker images to [Docker Hub](https://hub.docker.com) read [this](https://docs.docker.com/docker-hub/repos) or see the steps below. For publishing docker images to [GitHub](https://github.com) read [this](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry).
### Step 1 - Login
`docker login`
### Step 2 - Build Image
`docker build . -t `
### Step 3 - Tag Image
`docker tag /:`
### Step 4 - Push Image
`docker push /:`