diff options
| author | alex <alex@pdp7.net> | 2025-10-12 16:23:17 +0200 |
|---|---|---|
| committer | alex <alex@pdp7.net> | 2025-10-12 16:23:17 +0200 |
| commit | ab49cf6758e55c4b9b7fecdfad2f947345a7c231 (patch) | |
| tree | 6bfd50f58ee0232c9e82bf34227741e831206f77 /infrastructure/roles/podman/tasks/main.yaml | |
| parent | 139f3768ba55c1e7426b498f841f369f799ceb28 (diff) | |
Use rootful container with automatic namespace
Diffstat (limited to 'infrastructure/roles/podman/tasks/main.yaml')
| -rw-r--r-- | infrastructure/roles/podman/tasks/main.yaml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/infrastructure/roles/podman/tasks/main.yaml b/infrastructure/roles/podman/tasks/main.yaml index e804aca..66be760 100644 --- a/infrastructure/roles/podman/tasks/main.yaml +++ b/infrastructure/roles/podman/tasks/main.yaml @@ -6,3 +6,13 @@ name: podman-auto-update.timer enabled: true state: started +- name: configure containers subuids + ansible.builtin.copy: + dest: /etc/subuid + content: | + containers:2147483647:2147483648 +- name: configure containers subgids + ansible.builtin.copy: + dest: /etc/subgid + content: | + containers:2147483647:2147483648 |
