About version information:
Initialize centos, complete the upgrade of related packages and software, and install some basic software, configure ssh remote connection and so on. It can be started by the following command:
docker run -itd --name centos_1 -p 2222:22 --privileged ycj520/centos:1.0.0 init
After this, you can enter the centos system or connect through the relevant SSH remote connection tool. Note that the IP address of the remote connection server is the IP address of the host machine, and the port number is the port number mapped externally, here: 2222.
This version mainly adds the configuration of Nginx related environment. Initialize centos, complete the upgrade of related packages and software, and install some basic software, configure ssh remote connection and so on. It can be started by the following command:
docker run -itd --name centos_1 -p 80:80 -p 2222:22 --privileged ycj520/centos:1.0.1 init
After this, you can enter the centos system or connect through the relevant SSH remote connection tool. Note that the IP address of the remote connection server is the IP address of the host machine, and the port number is the port number mapped externally, here: 2222.
You can find the installation path or operate Nginx with the following command:
whereis nginx
cd /usr/local/nginx/sbin/
./nginx
./nginx -s stop
This version mainly adds the configuration of Java related environment, and configures multiple versions of Tomcat. Initialize centos, complete the upgrade of related packages and software, and install some basic software, configure ssh remote connection and so on. It can be started by the following command:
docker run -itd --name centos_1 -p 8080:8080 -p 2222:22 --privileged ycj520/centos:1.0.2 init
After this, you can enter the centos system or connect through the relevant SSH remote connection tool. Note that the IP address of the remote connection server is the IP address of the host machine, and the port number is the port number mapped externally, here: 2222.
You can find the installation path or operate Nginx with the following command:
whereis tomcat
cd /...
This version mainly adds mysql related configuration. Initialize centos, complete the upgrade of related packages and software, and install some basic software, configure ssh remote connection and so on. It can be started by the following command:
docker run -itd --name centos_1 -p 3307:3306 -p 8080:8080 -p 2222:22 --privileged ycj520/centos:1.0.3 init
After this, you can enter the centos system or connect through the relevant SSH remote connection tool. Note that the IP address of the remote connection server is the IP address of the host machine, and the port number is the port number mapped externally, here: 2222. You can also connect to mysql remotely through visual tools. Initialize the MySql database configuration, account: root, password: root, container internal port: 3306, allow remote connection.
This version mainly installed GCC and related compilation environment, and prepared the latest version of Python2 and Python3 source code, but did not compile, select the required version to compile and install when needed. Initialize centos, complete the upgrade of related packages and software, and install some basic software, configure ssh remote connection and so on. It can be started by the following command:
docker run -itd --name centos_1 -p 3307:3306 -p 8080:8080 -p 2222:22 --privileged ycj520/centos:1.0.4 init
After this, you can enter the centos system or connect through the relevant SSH remote connection tool. Note that the IP address of the remote connection server is the IP address of the host machine, and the port number is the port number mapped externally, here: 2222. You can also connect to mysql remotely through visual tools. Initialize the MySql database configuration, account: root, password: root, container internal port: 3306, allow remote connection.
The Python2 environment is compiled and installed.
The Python3 environment is compiled and installed.
The LNMP environment is built based on the original Centos system.
The Python, Pip, Supervisor, Flower and commonly used tools are installed and configured, based on the original Centos system.
The Python3, openssl, Pip, gcc and commonly used tools are installed and configured, based on the original Centos system.
Content type
Image
Digest
sha256:09c44192e…
Size
616.9 MB
Last updated
over 2 years ago
docker pull ycj520/centos:1.0.9