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
23 changes: 23 additions & 0 deletions contrib/containers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ podman build -t gcc:8 -f ./contrib/containers/gcc-8.dockerfile

## Run the container

Check if SELinux is enabled:
```bash
# SELinux status check
getenforce

# Enforcing - SELinux is enabled and enforcing policies
# Permissive - SELinux is enabled but only logging violations
# Disabled - SELinux is completely disabled
```

If SELinux is enabled, run the following command once:

```bash
Expand Down Expand Up @@ -49,3 +59,16 @@ Compile desired targets:
```bash
make -j all fdctl fddev
```

Exiting / Cleanup

```bash
# Leave the container
exit

# List of containers
podman ps -a

# Remove the container if necessary
podman rm <container_id> # Image - localhost/gcc:8
```
Loading