mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 11:22:10 +08:00 
			
		
		
		
	* cicd: robot automated Change * feat: add api test Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add api test make file Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim e2e test Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim e2e test Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * fix: Fixed some unused scripts and some names Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * docs: optimize openim docs Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add prom address Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim info test * feat: add openim images config path Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * fix: fix tim file rename * fix: fix tim file rename * fix: fix tim file rename * fix: fix tim file rename * fix: add openim test e2e * feat: add openim test .keep Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim test .keep Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: openim test Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: openim test Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: openim test Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> --------- Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> Co-authored-by: cubxxw <cubxxw@users.noreply.github.com>
		
			
				
	
	
		
			54 lines
		
	
	
		
			950 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			950 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
<!-- vscode-markdown-toc -->
 | 
						|
 | 
						|
<!-- vscode-markdown-toc-config
 | 
						|
	numbering=true
 | 
						|
	autoSave=true
 | 
						|
	/vscode-markdown-toc-config -->
 | 
						|
<!-- /vscode-markdown-toc -->
 | 
						|
# Install Docker
 | 
						|
 | 
						|
 | 
						|
The installation command is as follows:
 | 
						|
 | 
						|
```bash
 | 
						|
$ curl -fsSL https://get.docker.com | bash -s docker --mirror aliyun
 | 
						|
``
 | 
						|
 | 
						|
## 2.2 Start Docker
 | 
						|
 | 
						|
```bash
 | 
						|
$ systemctl start docker
 | 
						|
```
 | 
						|
 | 
						|
## 2.3 Test Docker
 | 
						|
 | 
						|
```bash
 | 
						|
$ docker run hello-world
 | 
						|
```
 | 
						|
 | 
						|
## 2.4 Configure Docker Acceleration
 | 
						|
 | 
						|
```bash
 | 
						|
$ mkdir -p /etc/docker
 | 
						|
$ tee /etc/docker/daemon.json <<-'EOF'
 | 
						|
{
 | 
						|
  "registry-mirrors": ["https://registry.docker-cn.com"]
 | 
						|
}
 | 
						|
EOF
 | 
						|
$ systemctl daemon-reload
 | 
						|
$ systemctl restart docker
 | 
						|
```
 | 
						|
 | 
						|
## 2.5 Install Docker Compose
 | 
						|
 | 
						|
```bash
 | 
						|
$ sudo curl -L "https://github.com/docker/compose/releases/download/latest/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
 | 
						|
$ sudo chmod +x /usr/local/bin/docker-compose
 | 
						|
```
 | 
						|
 | 
						|
## 2.6 Test Docker Compose
 | 
						|
 | 
						|
```bash
 | 
						|
$ docker-compose --version
 | 
						|
```
 |