diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2022-10-17 10:53:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-17 10:53:42 +0200 |
commit | c855e8d227a73b8328fb3d0a7a9eb99347a60738 (patch) | |
tree | afbbce6ebcfe8efb88d81be02aa8351cea9e8379 /.devcontainer | |
parent | b427e8e18cb6baa80124ce8e3a7e79aa670bcc74 (diff) |
fix(CORE/dbupdate)): allow to pass MySQL password via env (#13404)
* fix(CORE/dbupdate)): allow to pass MySQL password via env
+ fixed devContainer override file issue
+ added authserver dry-run in our CI
Diffstat (limited to '.devcontainer')
-rw-r--r-- | .devcontainer/devcontainer.json | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ed955ab619..15221f1aa5 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,12 +3,11 @@ "name": "ac-dev-server", // Update the 'dockerComposeFile' list if you have more compose files or use different names. - // The .devcontainer/docker-compose.yml file contains any overrides you need/want to make. - "dockerComposeFile": [ - "../docker-compose.yml", - "../docker-compose.override.yml", // needed until this issue will be solved: https://github.com/microsoft/vscode-remote-release/issues/1080 - "docker-compose.yml" - ], + // set an empty array to automatically solve + // the docker-compose files (including the .override.yml) + // https://github.com/microsoft/vscode-remote-release/issues/1080#issuecomment-824213014 + // it requires vscode 1.57+ + "dockerComposeFile": [], // The 'service' property is the name of the service for the container that VS Code should // use. Update this value and .devcontainer/docker-compose.yml to the real service name. "service": "ac-dev-server", |