Skip to content
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

docs: Add Fedora install instructions #40

Merged
merged 1 commit into from
Mar 22, 2024
Merged
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
30 changes: 30 additions & 0 deletions docs/1-installing.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# 1. Installing crun-vm

## On Fedora

Run:

```console
$ dnf install crun-vm
```

Podman will then be able to make use of the crun-vm runtime.

To also set up crun-vm for use with Docker:

- Merge the following configuration into `/etc/docker/daemon.json`:

```json
{
"runtimes": {
"crun-vm": {
"path": "/usr/bin/crun-vm"
}
}
}
```

- Reload the `docker` service for the new configuration to take effect:

```console
$ service docker reload
```

## Build and install from source (on Fedora)

1. Install crun-vm's runtime dependencies:
Expand Down