Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danydodson/doodles
👀 Docker doodles
https://github.com/danydodson/doodles
Last synced: about 6 hours ago
JSON representation
👀 Docker doodles
- Host: GitHub
- URL: https://github.com/danydodson/doodles
- Owner: danydodson
- Created: 2020-01-02T00:25:51.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-28T21:18:47.000Z (over 4 years ago)
- Last Synced: 2024-06-19T14:56:52.789Z (5 months ago)
- Language: Go
- Homepage: https://github.com/DanyDodson/doodles
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Building Docker Doodles
-----------------------Building can be done with the original `docker build`, or with the new *BuildKit* application. The new
experimental 'buildx' command, which is in nightly builds as well as in the Docker Engine 19.03 release,
provides a new, albeit familiar front end to BuildKit similar to the original `docker build` command.
BuildKit has some great new added features such as increased performance, and the ability to easily build
cross platform.To build for your own platform with the original docker build command, use:
`cd && docker build -t /doodle: ./`
To build cross platform, use the `Dockerfile.cross` file, either with *BuildKit* directly, or with *buildx*.
With buildx, you'll first need to create a cross platform `builder` instance with:`docker buildx create --use`
You only need to create one builder instance, and should not need to create new ones with subsequent
builds. To create and push the multi-arch image to Docker Hub, use the command:`cd && docker buildx build -f Dockerfile.cross --platform linux/amd64,linux/arm64,linux/arm/v8,linux/s390x,linux/ppc64le,windows/amd64 -t /doodle: --push .`
This will build the Doodle for these architectures:
* linux/amd64 (64 bit Linux native)
* linux/arm64 (suitable for Amazon EC2 A1 instances)
* linux/arm/v8 (suitable for Raspberry Pi)
* linux/s390x (for mainframe lovers)
* linux/ppc64le (for IBM POWER8 Little Endian)
* windows/amd64 (64 bit Windows native)