diff options
-rw-r--r-- | recipes-containers/podman/README | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/recipes-containers/podman/README b/recipes-containers/podman/README index 4c223a39..213ac256 100644 --- a/recipes-containers/podman/README +++ b/recipes-containers/podman/README | |||
@@ -18,3 +18,24 @@ Basic configuration: | |||
18 | % podman images | 18 | % podman images |
19 | % podman unshare cat /proc/self/uid_map | 19 | % podman unshare cat /proc/self/uid_map |
20 | 20 | ||
21 | |||
22 | podman system service | ||
23 | --------------- | ||
24 | |||
25 | The podman system service command creates a listening service that answers API | ||
26 | calls for Podman, it supports systemd socket activation. | ||
27 | |||
28 | Test with docker-compose (v2): | ||
29 | |||
30 | To be noticed, docker could NOT be installed together with podman, so | ||
31 | docker-compose should be built as a standalone tool, remove 'docker-plugin' | ||
32 | from its PACKAGECONFIG at build time: | ||
33 | |||
34 | ``` | ||
35 | PACKAGECONFIG:remove:pn-docker-compose = "docker-plugin" | ||
36 | ``` | ||
37 | |||
38 | % sudo systemctl start podman.socket | ||
39 | % git clone https://github.com/docker/awesome-compose.git | ||
40 | % cd awesome-compose/postgresql-pgadmin; source .env | ||
41 | % sudo docker-compose up -d | ||