Docker部署Go应用

一. 创建项目

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值