mirror of
https://github.com/containers/podman-compose.git
synced 2024-12-04 13:53:22 +01:00
15 lines
250 B
YAML
15 lines
250 B
YAML
|
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"
|