mirror of
https://github.com/containers/podman-compose.git
synced 2024-12-13 10:10:51 +01:00
cdcedeb6b2
Signed-off-by: Cam Spiers <camspiers@gmail.com>
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
|