1
0

add aliases podman-start und podman-use

This commit is contained in:
Michael Hoennig
2022-09-15 11:19:04 +02:00
parent 01d9cbd711
commit 430f75ea15
2 changed files with 10 additions and 0 deletions

View File

@ -524,9 +524,15 @@ Summary for Debian-based Linux systems:
sudo apt-get -y install podman
```
2Then start it like this:
```shell
systemctl --user enable --now podman.socket
systemctl --user status podman.socket
ls -la /run/user/$UID/podman/podman.sock
```
These commands are also available in `.aliases` as `podman-start`.
#### Use the Command Line to Run the Tests Against the Podman Daemon
@ -538,6 +544,8 @@ export DOCKER_HOST="unix:///run/user/$UID/podman/podman.sock"
export TESTCONTAINERS_RYUK_DISABLED=true
```
These commands are also available in `.aliases` as `podman-use`.
Disabling RYUK is necessary, because it's not supported by Podman.
Supposedly this means that containers are not properly cleaned up after test runs,
but I could not see any remaining containers after test runs.