Sign inSign up

ycj520/centos

By ycj520

Updated over 2 years ago

Initialize centos, and configure related.

Image
0

343

ycj520/centos repository overview

About version information:

v1.0.0

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.

v1.0.1

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
v1.0.2

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 /...
v1.0.3

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.

v1.0.4

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.

v1.0.5

The Python2 environment is compiled and installed.

v1.0.6

The Python3 environment is compiled and installed.

v1.0.7

The LNMP environment is built based on the original Centos system.

v1.0.8

The Python, Pip, Supervisor, Flower and commonly used tools are installed and configured, based on the original Centos system.

v1.0.9

The Python3, openssl, Pip, gcc and commonly used tools are installed and configured, based on the original Centos system.

Tag summary

Content type

Image

Digest

sha256:09c44192e

Size

616.9 MB

Last updated

over 2 years ago

docker pull ycj520/centos:1.0.9