Not able to run this container as daemon
Closed this issue · 2 comments
SplunkVenkat commented
every time i try running this image as deamon like "docker run -d -p 80:8888 customanaconda " it exits the container.
dbast commented
This can be e.g. done via:
docker run -d -p 8888:8888 continuumio/miniconda3 /bin/bash -c "\
conda install jupyter -y --quiet && \
mkdir -p /opt/notebooks && \
jupyter notebook \
--notebook-dir=/opt/notebooks --ip='*' --port=8888 \
--no-browser --allow-root"
Thus closing. Please reopen, if this still is an issue.