-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added instructions for root Update using-the-app-catalog.mdx #456
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -18,8 +18,8 @@ | |||||
|
||||||
```bash | ||||||
kraft pkg ls --apps --all --update | ||||||
``` | ||||||
``` | ||||||
Check failure on line 22 in content/guides/using-the-app-catalog.mdx GitHub Actions / Markdown Linter
|
||||||
TYPE NAME VERSION FORMAT MANIFEST INDEX PLAT | ||||||
app unikraft.org/base latest oci 18cd70e af5c5ed qemu/x86_64 | ||||||
app unikraft.org/base latest oci ac5efa1 af5c5ed fc/x86_64 | ||||||
|
@@ -57,7 +57,7 @@ | |||||
This will default to the `x86_64` architecture and to the `qemu` platform. | ||||||
It will pull and run run the application from the registry: | ||||||
|
||||||
``` | ||||||
i using arch=x86_64 plat=qemu | ||||||
[+] pulling unikraft.org/helloworld | ||||||
o. .o _ _ __ _ | ||||||
|
@@ -83,8 +83,8 @@ | |||||
|
||||||
```bash | ||||||
kraft run -W unikraft.org/nginx:1.15 | ||||||
``` | ||||||
``` | ||||||
Check failure on line 87 in content/guides/using-the-app-catalog.mdx GitHub Actions / Markdown Linter
|
||||||
i using arch=x86_64 plat=qemu | ||||||
[+] pulling unikraft.org/nginx | ||||||
o. .o _ _ __ _ | ||||||
|
@@ -100,8 +100,8 @@ | |||||
|
||||||
```bash | ||||||
kraft run -W -p 8080:80 unikraft.org/nginx:1.15 | ||||||
``` | ||||||
``` | ||||||
Check failure on line 104 in content/guides/using-the-app-catalog.mdx GitHub Actions / Markdown Linter
|
||||||
i using arch=x86_64 plat=qemu | ||||||
[+] pulling unikraft.org/nginx | ||||||
Powered by | ||||||
|
@@ -248,12 +248,18 @@ | |||||
|
||||||
```bash | ||||||
kraft net create -n 172.44.0.1/24 virbr0 | ||||||
or | ||||||
sudo kraft net create -n 172.44.0.1/24 virbr0 | ||||||
|
||||||
``` | ||||||
|
||||||
1. Run as `root` (prefix with `sudo` if required): | ||||||
|
||||||
```bash | ||||||
kraft run --network virbr0 . | ||||||
or | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
sudo kraft run --network virbr0 . | ||||||
|
||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
``` | ||||||
|
||||||
1. Query the unikernel instance: | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove the empty line