mirror of https://github.com/OpenVidu/openvidu.git
Deployments: add ulimits "nofile" property to all docker-compose.yml files
parent
316f938e4a
commit
76ecaf44ff
|
|
@ -49,7 +49,10 @@ services:
|
|||
restart: always
|
||||
network_mode: host
|
||||
ulimits:
|
||||
core: -1
|
||||
core: -1
|
||||
nofile:
|
||||
soft: 65536
|
||||
hard: 65536
|
||||
volumes:
|
||||
- /opt/openvidu/kms-crashes:/opt/openvidu/kms-crashes
|
||||
- ${OPENVIDU_RECORDING_PATH}:${OPENVIDU_RECORDING_PATH}
|
||||
|
|
|
|||
|
|
@ -132,6 +132,9 @@ services:
|
|||
restart: always
|
||||
ulimits:
|
||||
core: -1
|
||||
nofile:
|
||||
soft: 65536
|
||||
hard: 65536
|
||||
environment:
|
||||
- MEDIA_NODE_CONTROLLER_RECORDINGS_PATH=/opt/openvidu/mncontroller/recordings
|
||||
- KMS_IMAGE=kurento/kurento-media-server:7.2.0
|
||||
|
|
|
|||
|
|
@ -20,6 +20,9 @@ services:
|
|||
restart: always
|
||||
ulimits:
|
||||
core: -1
|
||||
nofile:
|
||||
soft: 65536
|
||||
hard: 65536
|
||||
entrypoint: ['/bin/sh', '-c', '/beats/copy_config_files.sh && /usr/local/bin/entrypoint.sh']
|
||||
environment:
|
||||
- KMS_IMAGE=kurento/kurento-media-server:7.2.0
|
||||
|
|
|
|||
|
|
@ -155,6 +155,9 @@ services:
|
|||
restart: always
|
||||
ulimits:
|
||||
core: -1
|
||||
nofile:
|
||||
soft: 65536
|
||||
hard: 65536
|
||||
environment:
|
||||
- MEDIA_NODE_CONTROLLER_RECORDINGS_PATH=/opt/openvidu/mncontroller/recordings
|
||||
- KMS_IMAGE=kurento/kurento-media-server:7.2.0
|
||||
|
|
|
|||
Loading…
Reference in New Issue