This commit is contained in:
qiaofeng1227 2023-08-17 15:50:54 +08:00
parent 2499333dcf
commit b0e4b12e84
4 changed files with 5 additions and 4 deletions

View file

@ -1,6 +1,6 @@
FROM python:3.10-slim
LABEL maintainer="Websoft9<help@websoft9.com>"
LABEL version="0.8.12"
LABEL version="0.8.13"
# Create API Directory
WORKDIR /usr/src/app

View file

@ -47,6 +47,7 @@ def get_release_version(version):
def get_release_url():
now = shell_execute.execute_command_output_all("cat /data/apps/websoft9/version.json")['result']
now_release = json.loads(now)['RELEASE']
myLogger.info_logger("test now_release")
myLogger.info_logger(now_release)
if now_release == None or now_release == "dev":
return const.ARTIFACT_URL_DEV

View file

@ -1,4 +1,4 @@
APP_NAME=websoft9-appmanage
APP_VERSION=0.8.12
APP_VERSION=0.8.13
APP_HTTP_PORT=5000
APP_NETWORK=websoft9

View file

@ -2,7 +2,7 @@
"SERVICES": {
"PORTAINER": "2.18.3",
"NGINX": "2.10.3",
"APPMANAGE": "0.8.12",
"APPMANAGE": "0.8.13",
"REDIS": "7.0.11"
},
"PLUGINS": {
@ -44,5 +44,5 @@
]
},
"RELEASE": "dev",
"VERSION": "0.8.16"
"VERSION": "0.8.17"
}