coolify/.devcontainer/devcontainer.json

29 lines
1.2 KiB
JSON
Raw Normal View History

2022-05-28 15:08:52 +02:00
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.233.0/containers/javascript-node
{
"name": "Node.js",
"build": {
"dockerfile": "Dockerfile",
// Update 'VARIANT' to pick a Node version: 18, 16, 14.
// Append -bullseye or -buster to pin to an OS version.
// Use -bullseye variants on local arm64/Apple Silicon.
2022-05-28 16:58:52 +02:00
"args": {
"VARIANT": "16-bullseye"
}
2022-05-28 15:08:52 +02:00
},
// Set *default* container specific settings.json values on container create.
"settings": {},
// Add the IDs of extensions you want installed when the container is created.
2022-05-28 17:19:49 +02:00
"extensions": ["dbaeumer.vscode-eslint", "svelte.svelte-vscode"],
2022-05-28 15:08:52 +02:00
// Use 'forwardPorts' to make a list of ports inside the container available locally.
2022-05-28 17:19:49 +02:00
"forwardPorts": [3000],
2022-05-28 15:08:52 +02:00
// Use 'postCreateCommand' to run commands after the container is created.
2022-05-28 17:19:49 +02:00
"postCreateCommand": "cp .env.template .env && pnpm install && pnpm db:push && pnpm db:seed",
2022-05-28 15:08:52 +02:00
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "node",
"features": {
"docker-in-docker": "20.10",
"github-cli": "latest"
}
2022-05-28 17:03:47 +02:00
}