Skip to content
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
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,19 @@ Requirements:
- [bootc extension requirements](https://github.com/containers/podman-desktop-extension-bootc?tab=readme-ov-file#requirements)
- (Even on Linux, you *must* set up `podman machine` with a rootful connection; see below)
- `podman machine init --rootful && podman machine start`
- qemu-system-x86_64/qemu-system-aarch64
- qemu-system-x86_64 / qemu-system-aarch64
- xorriso/osirrox
- golang
- libvirt-devel


To compile it just run in the project directory
To compile it, just run in the project directory:

```shell
make
```

### MacOS
On MacOS you can use homebrew to install podman-bootc

```
Expand All @@ -48,6 +49,21 @@ brew install qemu
```
or by other mean and make it available in the path.

### Fedora
For Fedora 40 and Rawhide we provide a COPR repository.
First, enable the COPR repository:

```
sudo dnf -y install 'dnf-command(copr)'
sudo dnf -y copr enable gmaglione/podman-bootc
```

then you can install `podman-bootc` as usual:

```
sudo dnf -y install podman-bootc
```


## Running

Expand Down