o/1MS\o ⌨️🐧 | #WeAreNatenom

SELECT
‘#bicycle 🚴‍♂️’
,‘#databases’
,‘#sql’
,‘#selfhosting’
,‘#Linux 🐧’
,‘Team vi’
,‘#mdRzA’
,‘Generation X’
FROM life
WHERE 0 = 0
;

  • 0 posts
  • 40 comments
Joined 4 years ago
Cake day: May 5th, 2022
  • @Excaliburr 3. Are we talking here about rootless podman? If yes, containers are running on the host with the uid of current user, in your example with UID 1000.
    Processes IN started containers are often running with UID=0, but this belongs to definition of used container and is only IN container.
    PostgreSQL in Debian container is running with UID=999.
    To avoid problems with created files in host file system, I’m using UserNS=keep-id:uid=999,gid=999, which maps files to the UID on host system.