chore: add files from master-wiki repo

This commit is contained in:
Alexander Navarro 2024-11-20 20:00:35 -03:00
parent f99a9ae2ac
commit 1847f6bf28
315 changed files with 1047341 additions and 0 deletions

View file

@ -0,0 +1,17 @@
# Docker
## Publish Container Images
To easily create multi-arch containers and publish them to a registry, use this snipped (note you need to be logged in the registry):
Create builder container:
```bash
docker buildx create --name mybuilder --use --bootstrap
```
Build and publish image:
```bash
docker buildx build --push \
--platform linux/amd64,linux/arm64 \
--tag ghcr.io/<name-space>/<image>:latest .
```