Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ryanabx/ryanabx-containers
- Owner: ryanabx
- License: mit
- Created: 2024-07-22T03:16:06.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-16T16:45:59.000Z (2 months ago)
- Last Synced: 2024-09-17T03:51:06.316Z (2 months ago)
- Language: Dockerfile
- Homepage:
- Size: 43 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`