Install jupyter
Write a script to run: #!/bin/bash # run_jupyter.sh jupyter notebook --no-browser --ip 0.0.0.0 --port 8888 --allow-root > .log 2>&1 & You can add this script to run at startup Docker port mappingFirst submit the container with jupyter installed docker commit -a 'author' -m "add jupyter" container name ubuntu:jupyter Create a container with a new image docker run -itd --name jupyter ubuntu:jupyter -p 80:8888 bash Open the host firewall firewall-cmd --zone=public --add-port=80/tcp --permanent firewall-cmd --reload firewall-cmd --list-port firewall-cmd --query-port=80/tcp Access the host machine using a browser So my development environment is like this hahaha This is the end of this article on how to install jupyter in docker on centos and open ports. For more information about installing jupyter on docker, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: What are mysql dirty pages?
>>: Detailed explanation of some commonly used font-size font units and line-height in CSS
Linux uses iftop to monitor the traffic of the ne...
SVN is the abbreviation of subversion, an open so...
1. Create a new virtual machine from VMware 15.5 ...
Preface In general development, images are upload...
In the previous article, we introduced how to for...
Table of contents 1 System Introduction 2 System ...
Background: A long time ago (2017.6.5, the articl...
This article example shares the specific code of ...
Create Table create table table name create table...
Error description: 1. After installing Nginx (1.1...
Recently, I encountered a database with the follo...
background First of all, I would like to state th...
MySQL temporary tables are very useful when we ne...
When switching users in the docker container, it ...
First, let's take a look at my basic developm...