Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/charlesportwoodii/docker-images
A collection of docker build images for various purposes
https://github.com/charlesportwoodii/docker-images
centos disque docker docker-image dockerfile dockerhub nginx php rhel trusty ubuntu xenial
Last synced: 28 days ago
JSON representation
A collection of docker build images for various purposes
- Host: GitHub
- URL: https://github.com/charlesportwoodii/docker-images
- Owner: charlesportwoodii
- Created: 2016-08-19T14:33:25.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-11-28T19:22:28.000Z (about 2 years ago)
- Last Synced: 2024-11-14T19:40:35.037Z (3 months ago)
- Topics: centos, disque, docker, docker-image, dockerfile, dockerhub, nginx, php, rhel, trusty, ubuntu, xenial
- Homepage:
- Size: 196 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker images for Builds
These are docker images used to build, compile, and base other software on.
| OS | Variants |
|---|----------|
| [Alpine](https://hub.docker.com/r/charlesportwoodii/alpine/tags) | 3.14, 3.15 |
| [Ubuntu](https://hub.docker.com/r/charlesportwoodii/ubuntu/tags) | 18.04, 20.04, 22.04, 24.04 |Packages are cross-build using buildx for x86_64 and ARM64 via buildx
Buildx:
```
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
docker buildx create --name multiarch --driver docker-container --use
docker buildx inspect --bootstrap
docker run --privileged --rm tonistiigi/binfmt --install all
```Re-apply as needed. Drone can sometimes fail due to buildx breaking.
```
docker buildx build -f ubuntu/24.04/Dockerfile.base --push --platform linux/arm64,linux/amd64 -t charlesportwoodii/ubuntu:24.04-base --compress .
docker buildx build -f ubuntu/24.04/Dockerfile.build --push --platform linux/arm64,linux/amd64 -t charlesportwoodii/ubuntu:24.04-build --compress .
```