# young-im **Repository Path**: tian-haoran/young-im ## Basic Information - **Project Name**: young-im - **Description**: 🔥🔥🔥插件式 IM 系统建设🔥🔥🔥 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2023-11-30 - **Last Updated**: 2023-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
一个基于微内核架构的即时通信系统 (起步阶段)
## 1 如何搭建基础设施 ### 1.1 安装 Docker #### 1.1.1卸载老版本 ```shell sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ docker-logrotate \ docker-engine ``` #### 1.1.2 安装仓库 ```shell sudo yum install -y yum-utils yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo ``` #### 1.1.3 安装Docker ```shell sudo yum install -y docker-ce docker-ce-cli containerd.io ``` #### 1.1.4 启动测试 ```shell sudo systemctl start docker ``` #### 1.1.4 配置镜像 ```shell vi /etc/docker/daemon.json { "registry-mirrors": ["https://registry.docker-cn.com", "http://hub-mirror.c.163.com" , "https://kfwkfulq.mirror.aliyuncs.com" ] } # 重启docker生效 service docker restart ```