Docker installs a local drawing software - the road to dream building

Drawing is essential, such as flow charts, architecture diagrams, etc. There are many drawing software on the Internet that are charged and inconvenient to use. Therefore, it is necessary to deploy a free and open source drawing software on the intranet.

How to deploy

docker run -it --rm --name="drawio" -p 8080:8080 -p 8443:8443 jgraph/drawio

How to access

Open the browser to access the address:

http://192.168.100.100:8080/?offline=1&https=0

或者

https://192.168.100.100:8443/?offline=1

This makes it very simple to deploy a drawing tool.

Guess you like

Origin blog.csdn.net/qq_34777982/article/details/134447555