Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pages/cli/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ It provides a modern, streamlined experience for deploying and managing unikerne
unikraft login

# Deploy an instance
unikraft run --metro=fra -p 443:8080/http+tls nginx:latest
unikraft run --metro=fra -p 443:8080/http+tls --image=nginx:latest

# List instances
unikraft instances list
Expand Down
12 changes: 6 additions & 6 deletions pages/cli/registries.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ The simplest way to push an image is to use the CLI to build, package, push, and
<CodeTabs syncKey="registry">
```bash title="central registry"
unikraft build . --output index.unikraft.io/<my-org>/<image-name>:latest
unikraft run --metro=fra -p 443:8080/http+tls -m 256MiB --name <instance-name> index.unikraft.io/<my-org>/<image-name>:latest
unikraft run --metro=fra -p 443:8080/http+tls -m 256MiB --name <instance-name> --image=index.unikraft.io/<my-org>/<image-name>:latest
```
```bash title="local registry"
unikraft build . --output index.<node-name>.unikraft.cloud/<my-org>/<image-name>:latest
unikraft run --metro=fra -p 443:8080/http+tls -m 256MiB --name <instance-name> index.<node-name>.unikraft.cloud/<my-org>/<image-name>:latest
unikraft run --metro=fra -p 443:8080/http+tls -m 256MiB --name <instance-name> --image=index.<node-name>.unikraft.cloud/<my-org>/<image-name>:latest
```
</CodeTabs>

Expand Down Expand Up @@ -201,21 +201,21 @@ When creating an instance directly from an existing image, reference it by tag o
```bash title="central registry"
# By tag
unikraft run --metro=fra -p 443:8080/http+tls -m 256MiB \
index.unikraft.io/alice/my-app:latest
--image=index.unikraft.io/alice/my-app:latest

# By digest (exact version pinning)
unikraft run --metro=fra -p 443:8080/http+tls -m 256MiB \
index.unikraft.io/alice/my-app@sha256:278cb8b1...
--image=index.unikraft.io/alice/my-app@sha256:278cb8b1...
```

```bash title="local registry"
# By tag
unikraft run --metro=fra -p 443:8080/http+tls -m 256MiB \
index.<node-name>.unikraft.cloud/alice/my-app:latest
--image=index.<node-name>.unikraft.cloud/alice/my-app:latest

# By digest (exact version pinning)
unikraft run --metro=fra -p 443:8080/http+tls -m 256MiB \
index.<node-name>.unikraft.cloud/alice/my-app@sha256:278cb8b1...
--image=index.<node-name>.unikraft.cloud/alice/my-app@sha256:278cb8b1...
```

</CodeTabs>
Expand Down
2 changes: 1 addition & 1 deletion pages/features/autoscale.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ First, create an instance, in this example using NGINX:
```bash title="unikraft"
git clone https://github.com/unikraft-cloud/examples
cd examples/nginx/
unikraft run --metro=fra -p 443:8080/http+tls -m 256MiB nginx:latest
unikraft run --metro=fra -p 443:8080/http+tls -m 256MiB --image=nginx:latest
```

```bash title="kraft"
Expand Down
4 changes: 2 additions & 2 deletions pages/features/load-balancing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ For example, use NGINX as the app:
git clone https://github.com/unikraft-cloud/examples
cd examples/nginx/
unikraft build . --output <my-org>/nginx:latest
unikraft run --metro=fra -p 443:8080/http+tls -m 256MiB <my-org>/nginx:latest
unikraft run --metro=fra -p 443:8080/http+tls -m 256MiB --image=<my-org>/nginx:latest
```

```bash title="kraft"
Expand Down Expand Up @@ -76,7 +76,7 @@ With this in place, it's now time to start a second instance and attach it to th

```bash title="unikraft"
cd examples/nginx/
unikraft run --metro=fra --service wandering-shape-n6mhimgn -m 256MiB <my-org>/nginx:latest
unikraft run --metro=fra --service wandering-shape-n6mhimgn -m 256MiB --image=<my-org>/nginx:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/features/scale-to-zero.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ Since Unikraft Cloud has scale-to-zero on by default, all you need to do is to s
git clone https://github.com/unikraft-cloud/examples
cd examples/nginx/
unikraft build . --output <my-org>/nginx:latest
unikraft run --metro=fra -p 443:8080/http+tls -m 128MiB <my-org>/nginx:latest
unikraft run --metro=fra -p 443:8080/http+tls -m 128MiB --image=<my-org>/nginx:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/caddy2.7-go1.21.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/caddy27-go121:latest
unikraft run --metro=fra -p 443:2015/http+tls -m 256M <my-org>/caddy27-go121:latest
unikraft run --metro=fra -p 443:2015/http+tls -m 256M --image=<my-org>/caddy27-go121:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/debian-ssh.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/debian-ssh:latest
unikraft run --metro=fra -p 2222:2222/tls -m 1G -e PUBKEY="...." <my-org>/debian-ssh:latest
unikraft run --metro=fra -p 2222:2222/tls -m 1G -e PUBKEY="...." --image=<my-org>/debian-ssh:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/dragonflydb.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/dragonflydb:latest
unikraft run --metro=fra -p 443:6379/http+tls -m 512M <my-org>/dragonflydb:latest
unikraft run --metro=fra -p 443:6379/http+tls -m 512M --image=<my-org>/dragonflydb:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/duckdb-go1.21.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/duckdb-go1.21:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 256M <my-org>/duckdb-go1.21:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 256M --image=<my-org>/duckdb-go1.21:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/github-webhook-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/github-webhook-node:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 1G -e GITHUB_WEBHOOK_SECRET=your_secret_here <my-org>/github-webhook-node:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 1G -e GITHUB_WEBHOOK_SECRET=your_secret_here --image=<my-org>/github-webhook-node:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/grafana.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/grafana:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 2G <my-org>/grafana:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 2G --image=<my-org>/grafana:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/haproxy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/haproxy:latest
unikraft run --metro=fra -p 443:8404/tls+http -m 256M <my-org>/haproxy:latest
unikraft run --metro=fra -p 443:8404/tls+http -m 256M --image=<my-org>/haproxy:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-boost1.74-g++13.2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-boost1.74-g++13.2:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 256M <my-org>/httpserver-boost1.74-g++13.2:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 256M --image=<my-org>/httpserver-boost1.74-g++13.2:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-bun.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-bun:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 512M <my-org>/httpserver-bun:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 512M --image=<my-org>/httpserver-bun:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-c-debug.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ For extensive debug information with `strace`, add the `USE_STRACE=1` environmen

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-c-debug:latest
unikraft run --metro=fra -p 443:8080/tls+http -p 2222:2222/tls -e PUBKEY=.... -e USE_STRACE=1 -m 256M <my-org>/httpserver-c-debug:latest
unikraft run --metro=fra -p 443:8080/tls+http -p 2222:2222/tls -e PUBKEY=.... -e USE_STRACE=1 -m 256M --image=<my-org>/httpserver-c-debug:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-dotnet10.0.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-dotnet10.0:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 512M <my-org>/httpserver-dotnet10.0:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 512M --image=<my-org>/httpserver-dotnet10.0:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-elixir1.16.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-elixir1.16:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 1G <my-org>/httpserver-elixir1.16:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 1G --image=<my-org>/httpserver-elixir1.16:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-erlang26.2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-erlang26.2:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 512M <my-org>/httpserver-erlang26.2:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 512M --image=<my-org>/httpserver-erlang26.2:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-expressjs4.18-node21.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-expressjs4.18-node21:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 512M <my-org>/httpserver-expressjs4.18-node21:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 512M --image=<my-org>/httpserver-expressjs4.18-node21:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-g++13.2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-g++13.2:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 256M <my-org>/httpserver-g++13.2:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 256M --image=<my-org>/httpserver-g++13.2:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-gcc13.2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-gcc13.2:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 256M <my-org>/httpserver-gcc13.2:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 256M --image=<my-org>/httpserver-gcc13.2:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-go1.21.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-go1.21:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 256M <my-org>/httpserver-go1.21:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 256M --image=<my-org>/httpserver-go1.21:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-java17-springboot3.2.x.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-java17-springboot3.2.x:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 1G <my-org>/httpserver-java17-springboot3.2.x:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 1G --image=<my-org>/httpserver-java17-springboot3.2.x:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-java21.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-java21:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 1G <my-org>/httpserver-java21:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 1G --image=<my-org>/httpserver-java21:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-lua5.1.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-lua5.1:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 256M <my-org>/httpserver-lua5.1:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 256M --image=<my-org>/httpserver-lua5.1:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-nginx-vite-vanilla.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-nginx-vite-vanilla:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 256M <my-org>/httpserver-nginx-vite-vanilla:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 256M --image=<my-org>/httpserver-nginx-vite-vanilla:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-node-express-puppeteer.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-node-express-puppeteer:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 4G <my-org>/httpserver-node-express-puppeteer:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 4G --image=<my-org>/httpserver-node-express-puppeteer:latest
```

```bash title="kraft"
Expand Down
4 changes: 2 additions & 2 deletions pages/guides/httpserver-node21-nextjs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-node21-nextjs:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 768M <my-org>/httpserver-node21-nextjs:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 768M --image=<my-org>/httpserver-node21-nextjs:latest
```

```bash title="kraft"
Expand Down Expand Up @@ -169,7 +169,7 @@ Run the command below to deploy the app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-expressjs4.18-node21:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 256M <my-org>/httpserver-expressjs4.18-node21:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 256M --image=<my-org>/httpserver-expressjs4.18-node21:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-node21-remix.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-node21-remix:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 768M <my-org>/httpserver-node21-remix:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 768M --image=<my-org>/httpserver-node21-remix:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-node21-solid-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-node21-solid-start:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 512M <my-org>/httpserver-node21-solid-start:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 512M --image=<my-org>/httpserver-node21-solid-start:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-node21-sveltekit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-node21-sveltekit:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 256M <my-org>/httpserver-node21-sveltekit:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 256M --image=<my-org>/httpserver-node21-sveltekit:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-node25.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-node25:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 512M <my-org>/httpserver-node25:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 512M --image=<my-org>/httpserver-node25:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-perl5.42.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-perl5.42:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 512M <my-org>/httpserver-perl5.42:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 512M --image=<my-org>/httpserver-perl5.42:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-php8.2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-php8.2:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 512M <my-org>/httpserver-php8.2:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 512M --image=<my-org>/httpserver-php8.2:latest
```

```bash title="kraft"
Expand Down
2 changes: 1 addition & 1 deletion pages/guides/httpserver-prisma-expressjs4.19-node18.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-prisma-expressjs4.19-node18:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 512M <my-org>/httpserver-prisma-expressjs4.19-node18:latest
unikraft run --metro=fra -p 443:3000/tls+http -m 512M --image=<my-org>/httpserver-prisma-expressjs4.19-node18:latest
```

```bash title="kraft"
Expand Down
4 changes: 2 additions & 2 deletions pages/guides/httpserver-python3.12-FastAPI-0.121.3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-python3.12-FastAPI-0.121.3:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 512M <my-org>/httpserver-python3.12-FastAPI-0.121.3:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 512M --image=<my-org>/httpserver-python3.12-FastAPI-0.121.3:latest
```

```bash title="kraft"
Expand Down Expand Up @@ -159,7 +159,7 @@ Run the command below to deploy the app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-python3.12-FastAPI-0.121.3:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 512M <my-org>/httpserver-python3.12-FastAPI-0.121.3:latest
unikraft run --metro=fra -p 443:8080/tls+http -m 512M --image=<my-org>/httpserver-python3.12-FastAPI-0.121.3:latest
```

```bash title="kraft"
Expand Down
4 changes: 2 additions & 2 deletions pages/guides/httpserver-python3.12-django5.0.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When done, invoke the following command to deploy this app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-python3.12-django5.0:latest
unikraft run --metro=fra -p 443:80/tls+http -m 1G <my-org>/httpserver-python3.12-django5.0:latest
unikraft run --metro=fra -p 443:80/tls+http -m 1G --image=<my-org>/httpserver-python3.12-django5.0:latest
```

```bash title="kraft"
Expand Down Expand Up @@ -182,7 +182,7 @@ Run the command below to deploy the app on Unikraft Cloud:

```bash title="unikraft"
unikraft build . --output <my-org>/httpserver-python3.12-django5.0:latest
unikraft run --metro=fra -p 443:80/tls+http -m 1G <my-org>/httpserver-python3.12-django5.0:latest
unikraft run --metro=fra -p 443:80/tls+http -m 1G --image=<my-org>/httpserver-python3.12-django5.0:latest
```

```bash title="kraft"
Expand Down
Loading
Loading