https://github.com/xatier/dockerfiles
My Dockerfile collections
https://github.com/xatier/dockerfiles
container docker dockerfile podman
Last synced: 9 days ago
JSON representation
My Dockerfile collections
- Host: GitHub
- URL: https://github.com/xatier/dockerfiles
- Owner: xatier
- License: gpl-3.0
- Created: 2020-03-15T23:24:19.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-10-19T09:43:35.000Z (3 months ago)
- Last Synced: 2025-10-19T13:54:41.223Z (3 months ago)
- Topics: container, docker, dockerfile, podman
- Language: Shell
- Homepage:
- Size: 117 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dockerfiles
My Dockerfile collections.
This is my collection of Dockerfile.
## Build
```bash
# this will build all subdirectories
make
```
## Pre-built images
Weekly builds are available [here](https://github.com/xatier?tab=packages).
## Preserve the history
I used to have the following dockerfiles, now consolidate them to one single repo for all kinds.
- [popcorn-docker](https://github.com/xatier/popcorn-docker) (this has been removed)
- [diffoscope-arch](https://github.com/xatier/diffoscope-arch)
I do the following trick to preserve the commit history from the other repos.
```bash
git remote add diffoscope git@github.com:xatier/diffoscope-arch.git
git pull diffoscope --allow-unrelated-histories master --no-rebase
mv Dockerfile diffoscope-arch/
git add .
git commit
git remote rm diffoscope
```
Please see the README.md files inside each directory for details of each image.