2019-09-11 17:50:00 +02:00
|
|
|
version: "3"
|
|
|
|
services:
|
|
|
|
ulimit1:
|
|
|
|
image: ulimit_test
|
|
|
|
command: ["ulimit.sh" ]
|
2019-10-04 19:27:19 +02:00
|
|
|
ulimits: nofile=1001
|
2019-09-11 17:50:00 +02:00
|
|
|
build:
|
|
|
|
context: ./
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
ulimit2:
|
|
|
|
image: ulimit_test
|
|
|
|
command: ["ulimit.sh" ]
|
2019-10-04 19:27:19 +02:00
|
|
|
ulimits:
|
2019-09-11 17:50:00 +02:00
|
|
|
- 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:
|
2019-09-11 17:50:00 +02:00
|
|
|
nofile: 1003
|
|
|
|
nproc:
|
|
|
|
soft: 1003
|
|
|
|
hard: 2003
|
|
|
|
build:
|
|
|
|
context: ./
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
|