Merge "Double stack size on gitea"

This commit is contained in:
Zuul 2019-04-23 20:32:59 +00:00 committed by Gerrit Code Review
commit 2a8783dbab
2 changed files with 10 additions and 0 deletions

View File

@ -23,6 +23,10 @@ services:
environment:
- USER_UID=1000
- USER_GID=1000
ulimits:
stack:
soft: 16777216
hard: 9223372036854775807
volumes:
- /var/gitea/data:/data
- /var/gitea/conf:/custom/conf

View File

@ -23,3 +23,9 @@ def test_gitea_listening(host):
assert gitea_http.is_listening
gitea_ssh = host.socket("tcp://0.0.0.0:222")
assert gitea_ssh.is_listening
def test_ulimit(host):
cmd = host.run("docker exec giteadocker_gitea-web_1 prlimit")
expected = ("STACK max stack size "
"16777216 9223372036854775807 bytes")
assert expected in cmd.stdout.split('\n')