Skip to content
/ docs Public

The front page and documentation for the Unikraft Open-Source Project.

License

Notifications You must be signed in to change notification settings

unikraft/docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3f1ad7e · Jan 29, 2025
Dec 19, 2024
Jan 29, 2025
Jan 29, 2025
Feb 29, 2024
Nov 13, 2024
Sep 15, 2023
Jul 25, 2024
Sep 12, 2023
Nov 13, 2024
Mar 13, 2024
Dec 21, 2024
Mar 14, 2024
Sep 12, 2023
Sep 12, 2023
Mar 2, 2024
Oct 6, 2023
Sep 12, 2023
Sep 12, 2023
Sep 12, 2023
Sep 12, 2023
Dec 28, 2022
Nov 13, 2024
Sep 12, 2023
Mar 19, 2024
Sep 15, 2023
Sep 12, 2023
Mar 26, 2024
Sep 12, 2023
Oct 14, 2024
Sep 12, 2023
Sep 12, 2023
Sep 12, 2023
Sep 12, 2023

Repository files navigation

Unikraft Documentation

This is the repository hosting Unikraft documentation. It is deployed on the Unikraft website It provides information for the latest version of Unikraft and KraftKit.

Documentation is written in MDX format. Building and deploying it requires Node and NPM. You can build and run either natively or using Docker.

Building and Testing Natively

npm install

npm run search-meta:gen

npm run dev

See also contributing/docs#building-the-website.

Using Docker

In order to use Docker, follow the instructions.

For local development:

docker build -t ghcr.io/unikraft/docs:dev --target dev .

docker run -it --rm -v $(pwd):/docs -w /docs -p 3000:3000 ghcr.io/unikraft/docs:dev

For production deployment:

docker build -t ghcr.io/unikraft/docs:runner --target runner .

docker run -it --rm -p 3000:3000 ghcr.io/unikraft/docs:runner

Contributing

Please see our Contribution Guide for more details.