File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,16 @@ podman build -t gcc:8 -f ./contrib/containers/gcc-8.dockerfile
1212
1313## Run the container
1414
15+ Check if SELinux is enabled:
16+ ``` bash
17+ # SELinux status check
18+ getenforce
19+
20+ # Enforcing - SELinux is enabled and enforcing policies
21+ # Permissive - SELinux is enabled but only logging violations
22+ # Disabled - SELinux is completely disabled
23+ ```
24+
1525If SELinux is enabled, run the following command once:
1626
1727``` bash
@@ -49,3 +59,16 @@ Compile desired targets:
4959``` bash
5060make -j all fdctl fddev
5161```
62+
63+ Exiting / Cleanup
64+
65+ ``` bash
66+ # Leave the container
67+ exit
68+
69+ # List of containers
70+ podman ps -a
71+
72+ # Remove the container if necessary
73+ podman rm < container_id> # Image - localhost/gcc:8
74+ ```
You can’t perform that action at this time.
0 commit comments