4 Commits
dev ... v1.4

Author SHA1 Message Date
xxx
6a6a0095c2 update ver 2023-09-27 09:16:53 +08:00
xxx
4737baff59 v1.4 2023-09-26 21:24:04 +08:00
xxx
371e60ef21 nginx的最大请求尺寸 2023-09-06 21:31:48 +08:00
xxx
3ed1549c4d v1.3 2023-09-06 17:20:44 +08:00
3 changed files with 9 additions and 7 deletions

View File

@@ -34,4 +34,4 @@ jobs:
platforms: linux/amd64,linux/arm64
push: true
tags: |
${{ env.IMAGE_FQDN }}:1.3
${{ env.IMAGE_FQDN }}:1.4

View File

@@ -7,7 +7,7 @@ RUN apt-get update && \
RUN mkdir /app
WORKDIR /app
RUN git clone -b dev https://github.com/PlayEdu/PlayEdu.git playedu
RUN git clone -b v1.4 https://github.com/PlayEdu/PlayEdu.git playedu
# 编译jar包
WORKDIR /app/playedu
@@ -23,9 +23,9 @@ RUN apk update && \
# 编译后端
WORKDIR /app
RUN git clone -b dev https://github.com/PlayEdu/backend.git backend
RUN git clone -b dev https://github.com/PlayEdu/frontend.git pc
RUN git clone -b dev https://github.com/PlayEdu/h5.git h5
RUN git clone -b v1.4 https://github.com/PlayEdu/backend.git backend
RUN git clone -b v1.4 https://github.com/PlayEdu/frontend.git pc
RUN git clone -b v1.4 https://github.com/PlayEdu/h5.git h5
# 编译后台
WORKDIR /app/backend
@@ -43,8 +43,8 @@ FROM eclipse-temurin:17
LABEL maintainer="0xtyz <tengyongzhi@meedu.vip>"
#使用东八区时间环境
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
# 使用东八区时间环境
RUN echo "Asia/Shanghai" > /etc/timezone
#安装基本组件
RUN apt update && apt install -y nginx

View File

@@ -1,3 +1,5 @@
client_max_body_size 50m;
server {
# 监听端口号9800
listen 9800 default_server;