aboutsummaryrefslogtreecommitdiff
path: root/docker/README.md
diff options
context:
space:
mode:
authorKunoiSayami <[email protected]>2021-10-26 18:57:31 +0800
committerKunoiSayami <[email protected]>2021-10-26 18:57:31 +0800
commit5ea81082107764d211139d0b115b1cb3c59617a7 (patch)
treea69cf17bfe13333d759bdde04971907e5610e2bf /docker/README.md
parentdac56755926fc4bc8676109cceb7f0ef57a46693 (diff)
feat(docker): Support using docker to build packages
Signed-off-by: KunoiSayami <[email protected]>
Diffstat (limited to 'docker/README.md')
-rw-r--r--docker/README.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/docker/README.md b/docker/README.md
new file mode 100644
index 0000000..463af2c
--- /dev/null
+++ b/docker/README.md
@@ -0,0 +1,20 @@
+## Docker images
+
+### Usage
+
+Choose your architecture (such as `aarch64`)
+
+```plain
+$ cd aarch64
+$ sudo docker build . -t repobuildbase
+$ cd ..
+$ sudo docker build . -t repobuild
+```
+
+Or you can use `onekey.sh` to build it.
+
+Then, start image
+
+```plain
+$ sudo docker run -it --rm --env-file docker.env repobuild
+```