如何把github项目搞到服务器上并打包成镜像运行起来
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
事先准备
linux服务器并安装git
github上有你的项目
项目里包含dockerfile文件【这里参考dockerfile文件结构内容
】
操作步骤
1.克隆项目
打开服务器Linux终端,克隆github上项目
git clone + gitub上的地址
如果ssh已经配好了可以直接ssh地址
我这里用的是https地址
git clone https://github.com/xrr075/Manage-api.git
执行完后需要输入你的username 和password 就是github的用户名密码
测试:ls 显示你的项目名称 则成功
2.打包镜像
1⃣️ 进入到项目路径下 cd 项目名
2⃣️ 运行 docker build -t demo .
如下图显示成功
3.运行镜像
这里的端口号就是服务器的6001映射到docker内部的6001,填写自己的端口号
docker run -d -p 6001:6001 demo
像这样就成功了 binggo✌️
4.既然上面的都成功了,我们测试下是否开启
docker ps
如上显示 image名称就是镜像名称 successful ✌️
5.测试接口喽 【后端人员高度来袭】
如下图所示,是不是通啦 你们懂的
6.看到这了,给我这个萌新支持下,都是亲手测试过的,如有问题欢迎评论,随时在线
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:4 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)