Do we have to use docker-machine to deploy on cloud? Can I create an instance and follow the Linux installation guideline?
It appears working except that the authentication and encryption do not seem to work.
I added the following to the docker-compose.override.yml (with environment variables properly set up)
houston:
environment:
BASIC_AUTH_USER: '${HOUSTON_USERNAME}'
BASIC_AUTH_PASSWD: '${HOUSTON_PASSWORD}'
LETSENCRYPT_DOMAIN: '${HOUSTON_DOMAIN}'
But then "https://" cannot connect.
If I comment out LETSENCRYPT_DOMAIN, then the JupyterLab is available at port 1969, but no authentication.
So, are the authentication and encryption work only with docker-machine, or am I missing something else?
Thank you.