Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshuachp/containers
Docker containers
https://github.com/joshuachp/containers
Last synced: about 9 hours ago
JSON representation
Docker containers
- Host: GitHub
- URL: https://github.com/joshuachp/containers
- Owner: joshuachp
- License: mit
- Created: 2024-03-11T20:10:44.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-11-04T15:12:56.000Z (14 days ago)
- Last Synced: 2024-11-04T16:25:22.364Z (13 days ago)
- Language: Dockerfile
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# containers
Docker containers
## Build container
```sh
# Create a builder that supports building in Qemu
docker buildx create --name=container --driver=docker-container --use --bootstrap
docker buildx build \
--builder=container \
--platform=linux/amd64,linux/arm64 \
-t /: \
--push
```