aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-containers/podman/README
blob: 213ac256d8c9712d16d32418988393d5808710a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
rootless podman
---------------

Basic configuration:

   https://developers.redhat.com/blog/2020/09/25/rootless-containers-with-podman-the-basics#

% echo "user.max_user_namespaces=28633" > /etc/sysctl.d/userns.conf 	 
% sysctl -p /etc/sysctl.d/userns.conf

% useradd -c "yocto" yocto
% passwd yocto

% su - yocto

% podman pull alpine
% podman run alpine cat /etc/os-release
% podman images
% podman unshare cat /proc/self/uid_map


podman system service
---------------

The podman system service command creates a listening service that answers API
calls for Podman, it supports systemd socket activation.

Test with docker-compose (v2):

To be noticed, docker could NOT be installed together with podman, so
docker-compose should be built as a standalone tool, remove 'docker-plugin'
from its PACKAGECONFIG at build time:

```
PACKAGECONFIG:remove:pn-docker-compose = "docker-plugin"
```

% sudo systemctl start podman.socket
% git clone https://github.com/docker/awesome-compose.git
% cd awesome-compose/postgresql-pgadmin; source .env
% sudo docker-compose up -d