From 302740186c44bada927054295cab1177ae442b68 Mon Sep 17 00:00:00 2001 From: wuchao <1272174216@qq.com> Date: Thu, 28 Nov 2024 09:17:35 +0800 Subject: [PATCH 1/4] =?UTF-8?q?Dockerfile=20=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Dockerfile | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 app/Dockerfile diff --git a/app/Dockerfile b/app/Dockerfile new file mode 100644 index 0000000..a5ff17d --- /dev/null +++ b/app/Dockerfile @@ -0,0 +1,44 @@ + +## 使用官方Go镜像作为构建环境 +#FROM golang:1.21.0 AS builder +# +## 设置工作目录 +#WORKDIR /app +# +## 复制项目源码 +#COPY . . +# +## 复制go模块依赖文件 +#COPY go.mod go.sum ./ +# +## 安装go模块依赖 +#RUN go env -w GOPROXY=https://goproxy.cn,direct +#RUN go mod tidy +# +## 编译Go应用程序,生成静态链接的二进制文件 +#RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o server . + +# 创建最终镜像,用于运行编译后的Go程序 +FROM alpine + +RUN echo 'http://mirrors.ustc.edu.cn/alpine/v3.5/main' > /etc/apk/repositories \ +&& echo 'http://mirrors.ustc.edu.cn/alpine/v3.5/community' >>/etc/apk/repositories \ +&& apk update && apk add tzdata \ +&& ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \ +&& echo "Asia/Shanghai" > /etc/timezone \ + +ENV server = "admin" + +# 设置工作目录 +WORKDIR /app + +# 将编译好的二进制文件从构建阶段复制到运行阶段 +COPY /server . +#COPY --from=builder /app/server . +COPY .env . +COPY ./front ./front + + +ENV TZ=Asia/Shanghai +# 设置容器启动时运行的命令 +ENTRYPOINT ["/app/server", "-a", "$server"] \ No newline at end of file From b6798ca73e4056c55ecdc982471a394308933607 Mon Sep 17 00:00:00 2001 From: wolter Date: Thu, 28 Nov 2024 09:45:19 +0800 Subject: [PATCH 2/4] feat: cmd model --- app/models/croncmdmodel/cron_cmd.go | 54 +++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 app/models/croncmdmodel/cron_cmd.go diff --git a/app/models/croncmdmodel/cron_cmd.go b/app/models/croncmdmodel/cron_cmd.go new file mode 100644 index 0000000..9fa7520 --- /dev/null +++ b/app/models/croncmdmodel/cron_cmd.go @@ -0,0 +1,54 @@ +package croncmdmodel + +import ( + "github.com/qit-team/snow-core/db" + "sync" + "time" +) + +var ( + once sync.Once + m *CronCmdModel +) + +// 实体 +type CronCmd struct { + CmdId string `xorm:"'cmd_id' UNSIGNED INT"` + CmdName string `xorm:"'cmd_name' varchar(20)"` + UserIds string `xorm:"'user_ids' varchar(50)"` + EntryId int `xorm:"'entry_id' int(10)"` + ReadDbId int `xorm:"'read_db_id' int(10)"` + WriteDbId int `xorm:"'write_db_id' int(11)"` + ExecuteType int `xorm:"'execute_type' TINYINT"` + ExecuteRead string `xorm:"'execute_read' TEXT"` + ExecuteWrite string `xorm:"'execute_write' TEXT"` + Cron string `xorm:"'cron' varchar(64)"` + MatchJson string `xorm:"'match_json' JSON"` + SendTimeType int `xorm:"'send_time_type' TINYINT"` + SendLimit int `xorm:"'send_limit' SMALLINT"` + ReportChannelId int `xorm:"'report_channel_id' int(11)"` + CreateTime time.Time `xorm:"'create_time' datetime"` + UpdateTime time.Time `xorm:"'update_time' timestamp"` + Status int `xorm:"'status' TINYINT"` + FailReason string `xorm:"'fail_reason' varchar(200)"` + DeletedTime time.Time `xorm:"'deleted_time' datetime"` +} + +// 表名 +func (m *CronCmd) TableName() string { + return "cron_cmd" +} + +// 私有化,防止被外部new +type CronCmdModel struct { + db.Model //组合基础Model,集成基础Model的属性和方法 +} + +// 单例模式 +func GetInstance() *CronCmdModel { + once.Do(func() { + m = new(CronCmdModel) + //m.DiName = "" //设置数据库实例连接,默认db.SingletonMain + }) + return m +} From 51bcc0fa043c08fcb9bab393163768809e600025 Mon Sep 17 00:00:00 2001 From: wuchao <1272174216@qq.com> Date: Thu, 28 Nov 2024 10:20:08 +0800 Subject: [PATCH 3/4] =?UTF-8?q?Dockerfile=20=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Dockerfile => Dockerfile | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename app/Dockerfile => Dockerfile (100%) diff --git a/app/Dockerfile b/Dockerfile similarity index 100% rename from app/Dockerfile rename to Dockerfile From ab696c280ec6d7a01008feb7442b7e5c4976ad6c Mon Sep 17 00:00:00 2001 From: wuchao <1272174216@qq.com> Date: Thu, 28 Nov 2024 10:21:56 +0800 Subject: [PATCH 4/4] =?UTF-8?q?Dockerfile=20=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a5ff17d..142d6a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,7 +36,7 @@ WORKDIR /app COPY /server . #COPY --from=builder /app/server . COPY .env . -COPY ./front ./front +#COPY ./front ./front ENV TZ=Asia/Shanghai