mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-26 01:43:49 +01:00
18472b53ac
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
27 lines
500 B
YAML
27 lines
500 B
YAML
version: "3"
|
|
services:
|
|
ulimit1:
|
|
image: ulimit_build_test
|
|
build:
|
|
context: ./
|
|
dockerfile: Dockerfile
|
|
ulimits: nofile=1001
|
|
ulimit2:
|
|
image: ulimit_build_test
|
|
build:
|
|
context: ./
|
|
dockerfile: Dockerfile
|
|
ulimits:
|
|
- nproc=1002:2002
|
|
- nofile=1002
|
|
ulimit3:
|
|
image: ulimit_build_test
|
|
build:
|
|
context: ./
|
|
dockerfile: Dockerfile
|
|
ulimits:
|
|
nofile: 1003
|
|
nproc:
|
|
soft: 1003
|
|
hard: 2003
|