Hi!
I hope this the right spot for my question / need of help?
I want to run the docker container jupyter/datascience-notebook on a Mac.
I start it with this command: docker run -p 7777:7777 --name DataS jupyter/datascience-notebook
It starts and in the end tells me:
" Copy/paste this URL into your browser when you connect for the first time,
to login with a token:
http://(20a355397b52 or 127.0.0.1):8888/?token=fc413e16bededd3498bd8ef4aa4372ebd38e9129dfad95aa
"
First, it is port 8888 instead of 7777 and second won’t connect anyway, either port.
Docker -ps show me this:
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
20a355397b52 jupyter/datascience-notebook “tini -g – start-no…” 8 minutes ago Up 8 minutes 0.0.0.0:7777->7777/tcp, 8888/tcp DataS
7d6a1f8b17c5 tylerfowler/superset “/superset-init.sh” 25 hours ago Up 25 hours 0.0.0.0:8088->8088/tcp superset
53fc131a89ed postgres:10 “docker-entrypoint.s…” 5 weeks ago Up 28 hours 0.0.0.0:5432->5432/tcp incubator-superset_postgres_1
bdffff137216 redis:3.2 “docker-entrypoint.s…” 5 weeks ago Up 28 hours 0.0.0.0:6379->6379/tcp incubator-superset_redis_1
The ONLY docker container I can access through the browser is the tylerfowler/superset container
And this docker container run a whole bunch of init instruction before.
What can I do?
Why does it work with the one container but not with “normal” containers?
Thanks.