🐳 A set of Bash scripts for building Docker images
865
A tiny Docker image with a set of Bash scripts for:
Create a container and copy the scripts file from it.
id=$(docker create moikot/docker-tools)
docker cp $id:/scripts.sh /tmp/scripts.sh && docker rm -v $id
/tmp/scripts.sh update_docker
The command updates Docker to the latest version and enables the experimental mode in Docker daemon.
/tmp/scripts.sh build_images
moikot/foobar v1.0.0 \
linux/amd64,linux/arm64/v8 \
[additional build arguments]
NOTE: Additional build arguments are passed directly to docker buildx build command.
/tmp/scripts.sh push_readme \
moikot/foobar README.md \
[docker_hub_user] [docker_hub_password]
Content type
Image
Digest
Size
1.3 kB
Last updated
almost 7 years ago
docker pull moikot/docker-tools