2022-04-22 10:06:32 +02:00
|
|
|
{
|
|
|
|
|
"name": "Apache Airflow - postgres",
|
|
|
|
|
"dockerComposeFile": [
|
2022-08-27 01:29:15 +03:00
|
|
|
"../../scripts/ci/docker-compose/devcontainer.yml",
|
|
|
|
|
"../../scripts/ci/docker-compose/backend-postgres.yml",
|
|
|
|
|
"../../scripts/ci/docker-compose/devcontainer-postgres.yml"
|
2022-04-22 10:06:32 +02:00
|
|
|
],
|
2026-02-28 21:48:17 +01:00
|
|
|
"features": {
|
|
|
|
|
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}
|
|
|
|
|
},
|
2022-08-27 01:29:15 +03:00
|
|
|
"settings": {
|
|
|
|
|
"terminal.integrated.defaultProfile.linux": "bash"
|
|
|
|
|
},
|
2022-04-22 10:06:32 +02:00
|
|
|
"extensions": [
|
|
|
|
|
"ms-python.python",
|
|
|
|
|
"ms-python.vscode-pylance",
|
|
|
|
|
"mtxr.sqltools",
|
|
|
|
|
"mtxr.sqltools-driver-pg",
|
|
|
|
|
"rogalmic.bash-debug",
|
|
|
|
|
"ms-azuretools.vscode-docker",
|
|
|
|
|
"dbaeumer.vscode-eslint",
|
|
|
|
|
"ecmel.vscode-html-css",
|
|
|
|
|
"timonwong.shellcheck",
|
|
|
|
|
"redhat.vscode-yaml",
|
|
|
|
|
"rogalmic.bash-debug"
|
|
|
|
|
],
|
|
|
|
|
"service": "airflow",
|
2024-11-22 09:35:23 -08:00
|
|
|
"forwardPorts": [8080,5555,5432,6379],
|
|
|
|
|
"workspaceFolder": "/opt/airflow",
|
|
|
|
|
// for users who use non-standard git config patterns
|
|
|
|
|
// https://github.com/microsoft/vscode-remote-release/issues/2084#issuecomment-989756268
|
|
|
|
|
"initializeCommand": "cd \"${localWorkspaceFolder}\" && git config --local user.email \"$(git config user.email)\" && git config --local user.name \"$(git config user.name)\"",
|
|
|
|
|
"overrideCommand": true
|
2022-04-22 10:06:32 +02:00
|
|
|
}
|