Add Docker pages #2

Open
aqua3 wants to merge 10 commits from dev into main
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 2221468eb8 - Show all commits

View File

@ -100,7 +100,7 @@ function saveAndRunDockerCompose() {
saveDockerCompose(); saveDockerCompose();
const composeLocation = composeFileSelection.value + "/docker-compose.yaml"; const composeLocation = composeFileSelection.value + "/docker-compose.yaml";
const commandBringDown = `docker compose -f ${composeLocation} down`; 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; const selection = composeFileSelection.selectedOptions[0].text;
// Bring down the services then bring them back up with the new configuration // Bring down the services then bring them back up with the new configuration