Fix typo bug with compose save & run button logic
This commit is contained in:
parent
e466c274cb
commit
2221468eb8
|
@ -100,7 +100,7 @@ function saveAndRunDockerCompose() {
|
|||
saveDockerCompose();
|
||||
const composeLocation = composeFileSelection.value + "/docker-compose.yaml";
|
||||
const commandBringDown = `docker compose -f ${composeLocation} down`;
|
||||
const commandBringUp = `docker compose -f ${composeLocation}r up -d`;
|
||||
const commandBringUp = `docker compose -f ${composeLocation} up -d`;
|
||||
const selection = composeFileSelection.selectedOptions[0].text;
|
||||
|
||||
// Bring down the services then bring them back up with the new configuration
|
||||
|
|
Loading…
Reference in New Issue