24 lines
816 B
Markdown
24 lines
816 B
Markdown
# Container
|
|
|
|
```{warning}
|
|
There are two container runtimes supported by us, but only one by Redhat. If you want to use Redhat third level support you'd have to use Podman. Be aware that compose files and run commands can vary between docker-ce and podman!
|
|
```
|
|
|
|
|
|
## Docker
|
|
Docker-CE will have always the latest features in docker engine and docker compose.
|
|
The docker repo is enabled by default and the packages can be installed by using follwing code in hiera.
|
|
```
|
|
base::pkg_group::extra:
|
|
- 'docker-ce'
|
|
```
|
|
|
|
## Podman
|
|
Podman engine runs "rootless" without any further configuration and is supported by Redhat Enterprise Support.
|
|
The Hiera configuration to install docker-podman with hiera would look like this:
|
|
```
|
|
base::pkg_group::extra:
|
|
- 'docker'
|
|
```
|
|
This will install podman from the appstream repository.
|