Skip to content

Commit

Permalink
Merge pull request #40 from containers/fedora
Browse files Browse the repository at this point in the history
docs: Add Fedora install instructions
  • Loading branch information
albertofaria authored Mar 22, 2024
2 parents 3b35d06 + 99d74d5 commit 4da92f3
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 4da92f3

Please sign in to comment.