This commit is contained in:
qiaofeng1227 2023-08-17 16:12:21 +08:00
parent 4078bd63bd
commit 495f9aeaa5
6 changed files with 10 additions and 6 deletions

View file

@ -1,3 +1,7 @@
## 0.8.18 release on 2023-08-17
1. appmanage volumes bug edit
## 0.8.15 release on 2023-08-17
1. service menu bug

View file

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

View file

@ -47,7 +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("add now_release:")
myLogger.info_logger(now_release)
if now_release == None or now_release == "dev":
return const.ARTIFACT_URL_DEV

View file

@ -1 +1 @@
1. service menu bug
1. appmanage volumes bug edit

View file

@ -1,4 +1,4 @@
APP_NAME=websoft9-appmanage
APP_VERSION=0.8.13
APP_VERSION=0.8.14
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.13",
"APPMANAGE": "0.8.14",
"REDIS": "7.0.11"
},
"PLUGINS": {
@ -44,5 +44,5 @@
]
},
"RELEASE": "dev",
"VERSION": "0.8.17"
"VERSION": "0.8.18"
}