Skip to content

Commit

Permalink
fix: whitespace (#1920)
Browse files Browse the repository at this point in the history
  • Loading branch information
gparlakov committed Sep 7, 2024
1 parent dac23c3 commit 4baaa42
Showing 1 changed file with 20 additions and 22 deletions.
42 changes: 20 additions & 22 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/alpine
{
"name": "NodeJS",
"image": "ghcr.io/podkrepi-bg/nodejs-devcontainer:v1.2.0",
"forwardPorts": [], // Forward ports
"containerEnv": {
"DATABASE_URL": "postgres://postgres:postgrespass@host.docker.internal:5432/postgres?schema=api" // Custom env vars
},
"postStartCommand": "yarn", // Install dependencies
"customizations":{
"vscode": {
"extensions": [
"ms-azuretools.vscode-docker",
"nrwl.angular-console",
"esbenp.prettier-vscode",
"firsttris.vscode-jest-runner",
"dbaeumer.vscode-eslint"
]
}
},
"mounts": [
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"
]
}
"name": "NodeJS",
"image": "ghcr.io/podkrepi-bg/nodejs-devcontainer:v1.2.0",
"forwardPorts": [], // Forward ports
"containerEnv": {
"DATABASE_URL": "postgres://postgres:postgrespass@host.docker.internal:5432/postgres?schema=api" // Custom env vars
},
"postStartCommand": "yarn", // Install dependencies
"customizations": {
"vscode": {
"extensions": [
"ms-azuretools.vscode-docker",
"nrwl.angular-console",
"esbenp.prettier-vscode",
"firsttris.vscode-jest-runner",
"dbaeumer.vscode-eslint"
]
}
},
"mounts": ["source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"]
}

0 comments on commit 4baaa42

Please sign in to comment.