watchmen
watchmen copied to clipboard
Disabling Auth in Docker files not working
I've recently worked on getting this stood up using the included Docker files leveraging docker-compose. In the docker-compose.env I added the following:
WATCHMEN_WEB_NO_AUTH='true'
However, when everything comes up, I'm still being asked to "Sign in with Google"
Edit: What is interesting is i can visit /services/add, but I can't hit the "add" button.
+1
@streetmapp @padajuan I got it working using the docker-compose.env
with the boolean without quotes.
WATCHMEN_WEB_NO_AUTH=true
Using '
and "
wasn't working for me either.
Maybe this should be the default behaviour.
@gh0st Never used docker in a windows environment, did you try editing the .env
file as I said in my previous comment?
@fmartingr I did, that's when I deleted my comment. Thank you!