diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8f2a5a4..7d7127f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ variables: APP_NAME: "cherry_be" OUTSIDE_PORT: 5018 - INSIDE_PORT: 80 + INSIDE_PORT: 7980 IMAGE_NAME: "$APP_NAME:$CI_COMMIT_REF_NAME-$CI_COMMIT_SHORT_SHA" DOCKER_FILE_PATH: "./Dockerfile" diff --git a/cherry.py b/cherry.py index 4a8ac75..403cd94 100644 --- a/cherry.py +++ b/cherry.py @@ -1,4 +1,4 @@ -# 引入文件夹中的文件 +# 引入文件夹中的文件 import sys sys.path.append('./lib') # 引入处理函数 @@ -48,4 +48,4 @@ def miss(e): # 本地运行启动 if __name__ == '__main__': - app.run(host="127.0.0.1", debug=True, port="7980") \ No newline at end of file + app.run(host="0.0.0.0", debug=True, port="7980")