Skip to content

Commit

Permalink
chore(docs): update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ihexon committed Dec 18, 2024
1 parent 5570aeb commit 04ca21b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,16 @@
```bash
docker build -t ubuntu-noble-build .
# Only if you need proxy
docker build --build-arg http_proxy=http://192.168.1.250:2020 --build-arg https_proxy=http://192.168.1.250:2020 -t ubuntu-noble-build .
docker build \
--build-arg http_proxy=http://192.168.1.250:2020 \
--build-arg https_proxy=http://192.168.1.250:2020 \
-t ubuntu-noble-build .


# Run container to build bootable-arm64.img.zst
docker run -it --privileged -v ./output:/root/MkRoot/output ubuntu-noble-build
# Only if you need proxy
docker run -it --privileged -v ./output:/root/MkRoot/output \
-e http_proxy=http://192.168.1.250:2020 \
-e https_proxy=http://192.168.1.250:2020 ubuntu-noble-build
```

0 comments on commit 04ca21b

Please sign in to comment.