stuff-from-scratch/infra/containers/README.md

27 lines
433 B
Markdown
Raw Normal View History

2022-11-30 13:45:59 +00:00
# Containers
This is a collection of CI-focused containers for testing.
# Setup
Install and run `podman` and activate the Rest API:
```bash
sudo apt-get -y install podman
podman system service -t 0 &
```
# Build containers
```bash
cd ubuntu/22_04/MinimalDeps
podman build -t ubuntu_22_04_minimal_deps .
```
# Run containers
```bash
2023-01-23 12:02:08 +00:00
podman run -it -v $LOCAL_SOURCE_DIR:/source ubuntu_22_04_minimal_deps:latest /bin/bash
2022-11-30 13:45:59 +00:00
```