From 59f60749bada6a989fc8b53af753eacc4115ef76 Mon Sep 17 00:00:00 2001
From: Salt <rehashedsalt@cock.li>
Date: Sat, 20 Feb 2021 09:42:38 -0600
Subject: [PATCH] Add README

---
 README.md | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 README.md

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..4bee1fc
--- /dev/null
+++ b/README.md
@@ -0,0 +1,21 @@
+# gluecontainers
+
+Dockerbuilds and related files to set up existing container images the way I want them.
+
+## How Build?
+
+Use a Docker BuildKit setup, like so:
+
+```bash
+docker buildx create --use --name builder1
+docker buildx inspect --bootstrap
+docker buildx install
+```
+
+Then build the container in question with multiple architectures:
+
+```bash
+docker build --platform linux/arm,linux/arm64,linux/amd64 .
+```
+
+Optionally using something like `-t rehashedsalt/project:latest --push` to push up straight to master on Dockerhub.