https://github.com/mach1el/docker-library
Applications containerization
https://github.com/mach1el/docker-library
alpine-docker debian-docker docker docker-compose docker-container docker-images docker-swarm dockerfiles dockerhub pgak-stack swarm-mode traefik-docker
Last synced: about 1 year ago
JSON representation
Applications containerization
- Host: GitHub
- URL: https://github.com/mach1el/docker-library
- Owner: mach1el
- License: mit
- Created: 2023-11-07T14:38:26.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-07T10:14:34.000Z (almost 2 years ago)
- Last Synced: 2024-08-07T11:14:31.553Z (almost 2 years ago)
- Topics: alpine-docker, debian-docker, docker, docker-compose, docker-container, docker-images, docker-swarm, dockerfiles, dockerhub, pgak-stack, swarm-mode, traefik-docker
- Language: Dockerfile
- Homepage:
- Size: 63.5 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker library
















This repository houses a collection of custom Docker images. These images are built and published to Docker Hub, providing ready-to-use solutions for various needs.
## About
This repository serves as the central location for managing and building all custom Docker images used in my projects. It streamlines the process of creating, updating, and publishing these images.
## Repository Structure
The repository is organized by service, with each service having its own directory. Within each service directory, you'll find:
* **`Dockerfile`:** The Dockerfile used to build the image. Multiple versions of a service might have separate Dockerfiles (e.g., `activemq/5.18.x/Dockerfile`, `activemq/6.1.x/Dockerfile`).
* **`README.md`:** A service-specific README with instructions on how to use the image.
* **`units/`:** Contains configuration files and service scripts used within the container. Often, you'll find a `units/etc/service//run` script for starting the service.
* **Other files:** May include configuration files (e.g., `*.yml`, `*.conf`), scripts (`*.sh`), or other resources required by the Docker image.
## Available Images
The following Docker images are available:
* **`debian` ([https://hub.docker.com/r/mich43l/debian](https://hub.docker.com/r/mich43l/debian))::** This image provides a minimal Debian Bookworm base for other Docker images. It's designed to be lightweight and secure, offering a stable foundation for building custom applications. It includes essential utilities and tools commonly needed in a Debian environment.
* **`alpine` ([https://hub.docker.com/r/mich43l/alpine](https://hub.docker.com/r/mich43l/alpine)):** This image provides a minimal Alpine Linux base. Alpine Linux is known for its small size and security focus, making it ideal for creating very efficient Docker images.
## Building and Publishing Images
```bash
#!/bin/bash
IMAGE_NAME=$1 # e.g., debian
VERSION=$2 # e.g., latest, 1.0.0
docker build -t mich43l/$IMAGE_NAME:$VERSION images/$IMAGE_NAME
docker push mich43l/$IMAGE_NAME:$VERSION
```
## Usage
General instructions on how to use the images. Point users to the individual service READMEs for specific instructions.
## Contributing
Guidelines for contributing to the repository.
# Docker hub
[](https://hub.docker.com/u/mich43l)
# License
