(3) Use the docker of the pagoda to install the Qinglong panel and the Raku tutorial [updated on November 26, 2021]

In this section of the tutorial, we will start to install the Qinglong panel. The Qinglong panel is a very powerful tool but it is also relatively fragile. After installation, try not to toss it at will, otherwise there will be various problems, which will cause you to be unable to maintain it. The container can be deleted and rebuilt.


11.26 Updates

The Qinglong panel has been updated frequently recently. The blogger uploaded the stable version 2.10.2 to the docker library

And updated the pull mirror address in the tutorial to pull the fixed version 2.10.2


1. Install the Qinglong panel

1. Pull the latest version of Qinglong image and create a container

One-time copy-paste code

pull image

docker pull pupupu777/qinglong:2.10.2

start the container

(If you want to change the port of the Qinglong panel, just change the 5700:5700 to XXXX:5700)

docker run -dit \
  --name QL \
  --hostname QL \
  --restart always \
  -p 5700:5700 \
  -v $PWD/QL/config:/ql/config \
  -v $PWD/QL/log:/ql/log \
  -v $PWD/QL/db:/ql/db \
  -v $PWD/QL/scripts:/ql/scripts \
  -v $PWD/QL/jbot:/ql/jbot \
  pupupu777/qinglong:2.10.2

Guess you like

Origin blog.csdn.net/pupupu777/article/details/121280159