podman-compose
podman-compose copied to clipboard
Feature Request uidmap user
How can I have "--uidmap user" in docker-compose.yml execued with podman-compose?
Since version 3.7 the docker compose file specification allows defining extension properties on service roots in addition to the root. Something like:
version: '3.7'
services:
web:
x-podman:
uidmaps:
- 1000:1000:1
I'm also interested in this feature. I added the configuration from @repomaa above to my compose YAML, but it's not making it to the podman command that compose runs.
you can pass podman-compose --podman-args ...
or podman-compose --podman-run-args ...
or podman-compose --podman--start-args ...
I liked the idea of x-podman
in yaml.