Grafana session timeout not working

I have the following grafana container

docker run -d
-p 3000:3000
–name=grafana-kc
-e “GF_SERVER_ROOT_URL=http://grafana.staged-by-discourse.com”
-e “GF_SERVER_DOMAIN=localhost”
-e “GF_SECURITY_LOGIN_REMEMBER_DAYS=0”
-e “GF_SESSION_SESSION_LIFE_TIME=60”
-e “GF_SESSION_COOKIE_NAME=grafana_sess”
grafana/grafana:5.2.3

what I am expecting is when I login with a user the expiration time of the cookie should be after 1 min, but the expiration time is in the past. How can I timeout the session after 1 minute.