From fcd0b875fe0f8ebe23d6ae30e2b430c7529d35e4 Mon Sep 17 00:00:00 2001 From: Max Date: Sat, 1 Jan 2022 20:42:18 +0800 Subject: [PATCH] v0.9.18 + table select api --- docker/yao/Dockerfile | 6 +++--- share/const.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/yao/Dockerfile b/docker/yao/Dockerfile index c9f08f92..d9d65344 100644 --- a/docker/yao/Dockerfile +++ b/docker/yao/Dockerfile @@ -1,6 +1,6 @@ # =========================================== -# Yao 0.9.17 + MySQL 8.0.27 -# docker build -t yaoapp/yao:0.9.17 . +# Yao 0.9.18+ MySQL 8.0.27 +# docker build -t yaoapp/yao:0.9.18. # =========================================== FROM debian:buster-slim RUN groupadd -r yao && useradd -r -g yao yao @@ -11,7 +11,7 @@ RUN sed -i 's#http://deb.debian.org#http://mirrors.163.com#g' /etc/apt/sources.l mkdir -p /data/app/db && \ chown -R yao:yao /data && \ echo user=root >> /etc/supervisor/supervisord.conf && \ - curl -fsSL https://demo-crm.iqka.com/releases/0.9.17/install.sh | bash + curl -fsSL https://demo-crm.iqka.com/releases/0.9.18/install.sh | bash COPY conf/yao.conf /etc/supervisor/conf.d/yao.conf COPY conf/yao.env /data/app/.env diff --git a/share/const.go b/share/const.go index 640f7db4..32eef63f 100644 --- a/share/const.go +++ b/share/const.go @@ -1,7 +1,7 @@ package share // VERSION 版本号 -const VERSION = "0.9.17" +const VERSION = "0.9.18" // DOMAIN 许可域(废弃) const DOMAIN = "*.iqka.com"