podman-compose/tests/ulimit/docker-compose.yaml

31 lines
601 B
YAML
Raw Normal View History

version: "3"
services:
ulimit1:
image: ulimit_test
command: ["ulimit.sh" ]
2019-10-04 19:27:19 +02:00
ulimits: nofile=1001
build:
context: ./
dockerfile: Dockerfile
ulimit2:
image: ulimit_test
command: ["ulimit.sh" ]
2019-10-04 19:27:19 +02:00
ulimits:
- nproc=1002:2002
- nofile=1002
build:
context: ./
dockerfile: Dockerfile
ulimit3:
image: ulimit_test
command: [ "ulimit.sh" ]
2019-10-04 19:27:19 +02:00
ulimits:
nofile: 1003
nproc:
soft: 1003
hard: 2003
build:
context: ./
dockerfile: Dockerfile