mirror of
https://github.com/containers/podman-compose.git
synced 2025-02-16 18:31:34 +01:00
Add a docker-compose test file for uidmaps/gidmaps
Add a simple docker-compose.yml test to use the x-podman extension with uidmaps and gitmaps
This commit is contained in:
parent
e511e6420f
commit
847f01a6c6
15
tests/uidmaps/docker-compose.yml
Normal file
15
tests/uidmaps/docker-compose.yml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
version: "3.7"
|
||||||
|
services:
|
||||||
|
touch:
|
||||||
|
image: busybox
|
||||||
|
command: 'touch /mnt/test'
|
||||||
|
volumes:
|
||||||
|
- ./:/mnt
|
||||||
|
user: 999:999
|
||||||
|
x-podman:
|
||||||
|
uidmaps:
|
||||||
|
- "0:1:1"
|
||||||
|
- "999:0:1"
|
||||||
|
gidmaps:
|
||||||
|
- "0:1:1"
|
||||||
|
- "999:0:1"
|
Loading…
Reference in New Issue
Block a user