https://github.com/raphaelcoeffic/build-crun-krun
Build script for crun-krun
https://github.com/raphaelcoeffic/build-crun-krun
Last synced: 4 months ago
JSON representation
Build script for crun-krun
- Host: GitHub
- URL: https://github.com/raphaelcoeffic/build-crun-krun
- Owner: raphaelcoeffic
- Created: 2025-09-06T08:32:14.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-09-06T08:53:13.000Z (10 months ago)
- Last Synced: 2025-09-06T10:24:42.356Z (10 months ago)
- Language: Dockerfile
- Size: 13.8 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Build script for crun-krun
## Dependencies
- Docker
- Tar
- Gzip
## Build
This will build `crun-binary.tar.gz`:
```shell
git clone https://github.com/raphaelcoeffic/build-crun-krun.git
cd build-crun-krun
./build.sh
```
## Install
```shell
sudo tar xf crun-binary.tar.gz -C /usr/local
sudo ldconfig
```
## Using `krun` runtime
### Docker
Add the following to `/etc/docker/daemon.json`:
```json
{
"runtimes": {
"krun": {
"path": "krun"
}
}
}
```
### Podman
The necessary configuration for `krun` is already included in newer Podman versions.
If it isn't in the version you are using, please refer to the
[Podman documentation](https://github.com/containers/common/blob/main/docs/containers.conf.5.md).