Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ryanabx/ryanabx-containers

My dev containers && my fedora atomic os container
https://github.com/ryanabx/ryanabx-containers

Last synced: about 1 month ago
JSON representation

My dev containers && my fedora atomic os container

Awesome Lists containing this project

README

        

Containers for development

These containers are primarily for my rust development

## Bootc containers

### How to build an image

Install osbuild-selinux:

```shell
sudo dnf install -y osbuild-selinux
```

Create a `./config.toml` in the bootc Containerfile's directory

```toml
[[customizations.user]]
name = "ryanbrue"
password = "password"
groups = ["wheel"]
```

Then, run bootc image builder:

```
sudo podman run \
--rm \
-it \
--privileged \
--pull=newer \
--security-opt label=type:unconfined_t \
-v $(pwd)/config.toml:/config.toml:ro \
-v $(pwd)/output:/output \
quay.io/centos-bootc/bootc-image-builder:latest \
--type anaconda-iso \
--rootfs btrfs \

```

Types we care about: `qcow2`, `anaconda-iso`