-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for systemd managed cgroups
- Loading branch information
Showing
13 changed files
with
527 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,12 +40,29 @@ For other platforms, please use the devcontainer that we prepared. | |
- Rust(See [here](https://www.rust-lang.org/tools/install)) | ||
- Docker(See [here](https://docs.docker.com/engine/install)) | ||
|
||
## Building | ||
## Dependencies | ||
```sh | ||
$ cargo install cargo-when | ||
``` | ||
|
||
### Debian, Ubuntu and related distributions | ||
```sh | ||
$ sudo dnf install \ | ||
pkg-config \ | ||
libsystemd-dev \ | ||
libdbus-glib-1-dev | ||
``` | ||
|
||
|
||
### Fedora, Centos, RHEL and related distributions | ||
```sh | ||
$ cargo install cargo-when # installs prerequisite for building youki | ||
$ sudo dnf install \ | ||
pkg-config \ | ||
systemd-dev \ | ||
dbus-devel | ||
``` | ||
|
||
## Build | ||
```sh | ||
$ git clone [email protected]:containers/youki.git | ||
$ cd youki | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.