---
title: "Podman - ArchWiki"
description: "!https://wiki.archlinux.org/title/Podman"
date: 2023-07-29
published: true
tags:
  - containers
  - linux
  - podman
  - thought
template: link
---


<div class="embed-card embed-card-external">
  <a href="https://wiki.archlinux.org/title/Podman" class="embed-card-link" target="_blank" rel="noopener noreferrer">
    <div class="embed-card-content">
      <div class="embed-card-title">Podman - ArchWiki</div>
      <div class="embed-card-meta">wiki.archlinux.org</div>
    </div>
  </a>
</div>


I kept running into limits in the number of subuid and subgid's I had on my system by default.  As always thank the arch wiki guide for having the most comprehensive yet consice guide to setup podman.

What I needed to do to fix the error.

``` bash
usermod --add-subuids 100000-165535 --add-subgids 100000-165535 username
```
