fix bug (#198)
This commit is contained in:
parent
05425d638f
commit
6bd41ad016
3 changed files with 12 additions and 6 deletions
|
@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
### Fixed
|
||||
|
||||
## [0.3.1.1] - 2022-05-17
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix the data loss problem when importing local applications
|
||||
|
||||
## [0.3.1] - 2022-05-16
|
||||
|
||||
### Added
|
||||
|
|
|
@ -1268,10 +1268,10 @@ func ContainerUpdateInfo(c *gin.Context) {
|
|||
var vol model.PathArray
|
||||
// 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{
|
||||
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)
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* @Author: LinkLeong link@icewhale.com
|
||||
* @Date: 2022-02-17 18:53:22
|
||||
* @LastEditors: LinkLeong
|
||||
* @LastEditTime: 2022-05-13 18:08:25
|
||||
* @LastEditTime: 2022-05-17 12:52:47
|
||||
* @FilePath: /CasaOS/types/system.go
|
||||
* @Description:
|
||||
* @Website: https://www.casaos.io
|
||||
|
@ -10,6 +10,6 @@
|
|||
*/
|
||||
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>"
|
||||
|
|
Loading…
Reference in a new issue