Skip to content

Commit

Permalink
Merge pull request #1445 from pyiron/docker-install-fix
Browse files Browse the repository at this point in the history
Update docker run commands
  • Loading branch information
jan-janssen committed Jan 11, 2023
2 parents 47ffe2d + 6b6691e commit c6c5404
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -456,13 +456,13 @@ After downloading the docker container you can use it either with jupyter notebo
.. code-block:: bash
docker run -i -t -p 8888:8888 pyiron/pyiron /bin/bash -c "source /srv/conda/envs/notebook/bin/activate; jupyter notebook --notebook-dir=/home/pyiron/ --ip='*' --port=8888"
docker run -i -t -p 8888:8888 pyiron/pyiron /bin/bash -c "source /opt/conda/bin/activate; jupyter notebook --notebook-dir=/home/pyiron/ --ip='*' --port=8888"
or with jupyter lab:
.. code-block:: bash
docker run -i -t -p 8888:8888 pyiron/pyiron /bin/bash -c "source /srv/conda/envs/notebook/bin/activate; jupyter lab --notebook-dir=/home/pyiron/ --ip='*' --port=8888"
docker run -i -t -p 8888:8888 pyiron/pyiron /bin/bash -c "source /opt/conda/bin/activate; jupyter lab --notebook-dir=/home/pyiron/ --ip='*' --port=8888"
After the run command the following line is displayed. Copy/paste this URL into your browser when you connect for the first time, to login with a token:
Expand Down

0 comments on commit c6c5404

Please sign in to comment.