We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We currently install docker using the tljh_extra_apt_packages hook:
tljh_extra_apt_packages
tljh-voila-gallery/tljh-voila-gallery/tljh_voila_gallery/__init__.py
Lines 75 to 79 in f7bac2d
However the Docker documentation recommends uninstalling docker.io and use a different procedure instead:
docker.io
https://docs.docker.com/engine/install/ubuntu/
We could then add the steps to install docker-ce in the tljh_post_install hook instead:
docker-ce
tljh_post_install
Lines 82 to 84 in f7bac2d
By executing apt commands directly, similar to what is done in TLJH:
apt
https://github.com/jupyterhub/the-littlest-jupyterhub/blob/bdaab082ea1171b65a30bd93e27db4fc9b694a44/bootstrap/bootstrap.py#L127-L129
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We currently install docker using the
tljh_extra_apt_packages
hook:tljh-voila-gallery/tljh-voila-gallery/tljh_voila_gallery/__init__.py
Lines 75 to 79 in f7bac2d
However the Docker documentation recommends uninstalling
docker.io
and use a different procedure instead:https://docs.docker.com/engine/install/ubuntu/
We could then add the steps to install
docker-ce
in thetljh_post_install
hook instead:tljh-voila-gallery/tljh-voila-gallery/tljh_voila_gallery/__init__.py
Lines 82 to 84 in f7bac2d
By executing
apt
commands directly, similar to what is done in TLJH:https://github.com/jupyterhub/the-littlest-jupyterhub/blob/bdaab082ea1171b65a30bd93e27db4fc9b694a44/bootstrap/bootstrap.py#L127-L129
The text was updated successfully, but these errors were encountered: