Skip to content

Commit

Permalink
fix: fix the issue when update miss the name
Browse files Browse the repository at this point in the history
  • Loading branch information
DesnLee committed Sep 9, 2023
1 parent 841af60 commit dca3589
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func updateContainer() {
}

c := docker.Container{
Name: inputName,
Name: name,
ImageName: oldContainer.ImageName,
ContainerType: oldContainer.ContainerType,
HostPort: oldContainer.HostPort,
Expand Down
2 changes: 1 addition & 1 deletion vars/vars.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

const (
Version = "0.0.7"
Version = "0.0.8"
DockerNameBE = "ssm-backend"
DockerNameFE = "ssm-frontend"
ContainerTypeFE = "frontend"
Expand Down

0 comments on commit dca3589

Please sign in to comment.