I'm running an Ubuntu 16.04 VM on Google Compute Engine. I've created a static IP address <my_static_ip_address>
and my firewall settings allow tcp:80-8888.
I started the Jupyter server within the docker image with
jupyter notebook --ip=0.0.0.0 --port=8888 --no-browser --allow-root
and got this URL
http://0.0.0.0:8888/?token=8b26c453d278eae1da71b80f26a4ef8ea06734e5c636d897
I'm not able to access from external browser with http://<my_static_ip_address>:8888
What am I missing?