Skip to content

Commit

Permalink
docs: Add Fedora install instructions
Browse files Browse the repository at this point in the history
crun-vm is now packaged in Fedora 38 and above.

Signed-off-by: Alberto Faria <[email protected]>
  • Loading branch information
albertofaria committed Mar 22, 2024
1 parent 3b35d06 commit 99d74d5
Showing 1 changed file with 30 additions and 0 deletions.
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

0 comments on commit 99d74d5

Please sign in to comment.