Xwiki does not show login page on application start

I have installed xwiki using docker images. I have enabled Oauth with Microsoft Azure as the provider using OIDC Connect Authenticator. In this installation, I am observing that when the application starts, it is not showing the login page. I have to press login link on the top left corner of the screen. This is behavior is different in the application I have installed one week ago where I was presented with the login screen as the first thing when the application starts.

Is there a way to enforce login before any wiki page shows up?

Here are the docker commands I have used -

docker run --net=xwiki-nw-alt --name postgres-xwiki-alt -v /home/ganeshkumar/data:/var/lib/postgresql/data -e POSTGRES_ROOT_PASSWORD=xwiki -e POSTGRES_USER=xwiki -e POSTGRES_PASSWORD=xwiki -e POSTGRES_DB=xwiki -e POSTGRES_INITDB_ARGS=“–encoding=UTF8” -d postgres:9.5
docker run --net=xwiki-nw-alt -d --name xwiki-alt -p 8080:8080 -v /home/ganeshkumar/wiki-data:/usr/local/xwiki -e DB_USER=xwiki -e DB_PASSWORD=xwiki -e DB_DATABASE=xwiki -e DB_HOST=postgres-xwiki-alt xwiki:lts-postgres-tomcat

You are not asked to login because you don’t need to. If you want to make your wiki private you can take a look at https://www.xwiki.org/xwiki/bin/view/Documentation/AdminGuide/Access%20Rights/#HPrivateWiki.