There was a need to disable account registration on the login page.
After small search i found an issue on github and when this option has been added: https://github.com/kiwitcms/Kiwi/issues/2500
I found required parameter at /tcms/settings/common.py and official documentation show me to change value of REGISTRATION_ENABLED to False:
https://kiwitcms.readthedocs.io/en/stable/configuration.html
I changed value and restart docker container from directory with it:
docker-compose restart
But account registration field still appear. Clearly, further action is required. But I can't find the answer in the official documentation and I don't have enough experience with docker. Thanks.
When I carefully read the documentation again, i'm realized that any customization requires remake the docker image:
https://kiwitcms.readthedocs.io/en/latest/installing_docker.html#customized-docker-image
I updated repository under kiwi directory:
git fetchgit checkout v11.7 //latest kiwi release at this momenthad made necessary changes at tcms/settings/common.py
built new docker image:
make docker-imageand started services:
docker-compose up -d