一. 创建项目
1.创建hello项目
$ vim ./hello/main.go
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "hello world")
})
http.ListenAndServe(":8080", nil)
}
2.编译项目: 运行环境为linux
$ CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o hello
$ CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build #交叉编译
$ find . -name *.go -exec rm -rf {} \; #删除go源码文件
$ find -type d -empty |xargs rm -rf; #删除空目录
二. 守护进程
1.第一种方式:nohup
nohup ./hello &
2.第二种方式: 在main文件加入以下代码(需要下载相应依赖包)
import _ "github.com/icattlecoder/godaemon"
三. 容器部署
1.在项目根目录创建Dockerfile:
vim ./Dockerfile
# 基础镜像(阿尔派)
FROM alpine
# 维护者
MAINTAINER SYBS sybs@qq.com
# 容器主目录
WORKDIR /app
# 拷贝项目
COPY . .
# 暴露端口
EXPOSE 8080
# 构建时命令
#RUN find . -name *.go -exec rm -rf {} \ #删除源文件
#RUN find -type d -empty |xargs rm -rf; #删除空目录
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# 运行时命令
CMD ./hello
2.编译项目
$ CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build #交叉编译
$ find . -name *.go -exec rm -rf {} \; #删除go源码文件
$ find -type d -empty |xargs rm -rf; #删除空目录
3.构建与运行
$ docker build -t hello:1.0 . #构建镜像
$ docker run -d --name hello-server -p 8080:8080 hello:1.0 #守护模式
$ docker exec -ti hello-server /bin/sh #进入容器
$ curl 0.0.0.0:8080 #测试
参考:
https://yq.aliyun.com/articles/57247
https://blog.csdn.net/horsefoot/article/details/51654785
https://blog.csdn.net/m0_37554486/article/details/78440367?locationNum=5&fps=1
https://blog.csdn.net/shushanfx/article/details/53425646
https://www.codercto.com/a/29472.html