link 3 years ago
parent
commit
6bd41ad016
3 changed files with 12 additions and 6 deletions
  1. 6 0
      CHANGELOG.md
  2. 3 3
      route/v1/docker.go
  3. 3 3
      types/system.go

+ 6 - 0
CHANGELOG.md

@@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 
 ### Fixed
 ### Fixed
 
 
+## [0.3.1.1] - 2022-05-17
+
+### Fixed
+
+- Fix the data loss problem when importing local applications
+
 ## [0.3.1] - 2022-05-16
 ## [0.3.1] - 2022-05-16
 
 
 ### Added
 ### Added

+ 3 - 3
route/v1/docker.go

@@ -1268,10 +1268,10 @@ func ContainerUpdateInfo(c *gin.Context) {
 	var vol model.PathArray
 	var vol model.PathArray
 	// json2.Unmarshal([]byte(appInfo.Volumes), &vol)
 	// json2.Unmarshal([]byte(appInfo.Volumes), &vol)
 
 
-	for i := 0; i < len(info.HostConfig.Mounts); i++ {
+	for i := 0; i < len(info.Mounts); i++ {
 		temp := model.PathMap{
 		temp := model.PathMap{
-			Path:          strings.ReplaceAll(info.HostConfig.Mounts[i].Source, "$AppID", info.Name),
-			ContainerPath: info.HostConfig.Mounts[i].Target,
+			Path:          strings.ReplaceAll(info.Mounts[i].Source, "$AppID", info.Name),
+			ContainerPath: info.Mounts[i].Destination,
 		}
 		}
 		vol = append(vol, temp)
 		vol = append(vol, temp)
 	}
 	}

+ 3 - 3
types/system.go

@@ -2,7 +2,7 @@
  * @Author: LinkLeong link@icewhale.com
  * @Author: LinkLeong link@icewhale.com
  * @Date: 2022-02-17 18:53:22
  * @Date: 2022-02-17 18:53:22
  * @LastEditors: LinkLeong
  * @LastEditors: LinkLeong
- * @LastEditTime: 2022-05-13 18:08:25
+ * @LastEditTime: 2022-05-17 12:52:47
  * @FilePath: /CasaOS/types/system.go
  * @FilePath: /CasaOS/types/system.go
  * @Description:
  * @Description:
  * @Website: https://www.casaos.io
  * @Website: https://www.casaos.io
@@ -10,6 +10,6 @@
  */
  */
 package types
 package types
 
 
-const CURRENTVERSION = "0.3.1"
+const CURRENTVERSION = "0.3.1.1"
 
 
-const BODY = ""
+const BODY = "<li>Fix the data loss problem when importing local applications</li>"