@Svinhufvud@sopuli.xyz
member since 24 Jun 2023 18:38
comments
- on Why use Proxmox over Podman or Docker? in c/selfhosted@lemmy.world · 7h ago
-
on New Europol proposal pushes for deregulation and more AI in policing in c/privacy@lemmy.world · 2d ago
The EU comission is on such a wrong track with all this de-regulation and mass surveillance.
-
on Podman: Issues with multiple users running containers simultaneously in c/selfhosted@lemmy.world · 4 Sep 2026
Sorry for not answering to your question directly, but why not just use subuids for separation instead?
podman run -d --restart unless-stopped \ --uidmap "+0:@100001:1" \ --name nginx-1 \ --port 8081:80 \ docker.io/library/nginx
podman run -d --restart unless-stopped \ --uidmap "+0:@100002:1" \ --name nginx-2 \ --port 8082:80 \ docker.io/library/nginx
-
on Selfhosting payment processing in c/selfhosted@lemmy.world · 21 Aug 2026
From their site:
Taler does not introduce a new currency. Taler uses a digital wallet storing coins and payment service providers with settlement accounts in existing currencies. Thus, Taler’s cryptographic coins correspond to existing currencies, such as US Dollars, Euros or even Bitcoins.
Check out the krun runtime for podman, if you want stronger container isolation from the host. It creates a small VM for each container. Gpu passthrough on linux is limited though.