Skip to content
GitLab
Explore
Sign in
Admin message
A maintenance window for GitLab is scheduled on Wednesday, September 16th, from 08:00 to 12:00.
Changes
Page history
Update ELT Containers on Podman
authored
Oct 25, 2023
by
Arturo Hoffstadt
Hide whitespace changes
Inline
Side-by-side
ELT-Containers-on-Podman.md
View page @
75878034
...
@@ -78,7 +78,9 @@ Only terminal development
...
@@ -78,7 +78,9 @@ Only terminal development
```
sh
```
sh
podman run
--cpus
4
-m
8gb
-it
localhost/devenv-custom:latest
podman run
--cpus
4
-m
8gb
-it
localhost/devenv-custom:latest
```
```
Remeber to limit the cpus and memory used by the container. Otherwise compilation can eat away your resources.
>> IMPORTANT!
Remeber to limit the cpus and memory used by the container. Otherwise compilation can eat away your resources.
GUI with X11/Wayland development
GUI with X11/Wayland development
...
@@ -93,7 +95,6 @@ The extra volumes and environment variables are the sockets and their paths to X
...
@@ -93,7 +95,6 @@ The extra volumes and environment variables are the sockets and their paths to X
```
sh
```
sh
podman volume create rtctk
podman volume create rtctk
```
```
and add the
`--volume v rtctk:/root/volume`
to the podman run command
and add the
`--volume v rtctk:/root/volume`
to the podman run command
Simple case, only console is available
Simple case, only console is available
...
...