mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 08:29:53 +01:00
Adjust spacing in devcontainer.json
This commit is contained in:
parent
187c6ecb52
commit
b5cff7e1de
1 changed files with 22 additions and 22 deletions
|
@ -2,34 +2,34 @@
|
||||||
// https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/docker-existing-docker-compose
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/docker-existing-docker-compose
|
||||||
// If you want to run as a non-root user in the container, see .devcontainer/docker-compose.yml.
|
// If you want to run as a non-root user in the container, see .devcontainer/docker-compose.yml.
|
||||||
{
|
{
|
||||||
"name": "Retrospring",
|
"name": "Retrospring",
|
||||||
|
|
||||||
// Update the 'dockerComposeFile' list if you have more compose files or use different names.
|
// 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.
|
// The .devcontainer/docker-compose.yml file contains any overrides you need/want to make.
|
||||||
"dockerComposeFile": [
|
"dockerComposeFile": [
|
||||||
"../docker-compose.yml"
|
"../docker-compose.yml"
|
||||||
],
|
],
|
||||||
|
|
||||||
// The 'service' property is the name of the service for the container that VS Code should
|
// 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.
|
// use. Update this value and .devcontainer/docker-compose.yml to the real service name.
|
||||||
"service": "web",
|
"service": "web",
|
||||||
|
|
||||||
// The optional 'workspaceFolder' property is the path VS Code should open by default when
|
// The optional 'workspaceFolder' property is the path VS Code should open by default when
|
||||||
// connected. This is typically a file mount in .devcontainer/docker-compose.yml
|
// connected. This is typically a file mount in .devcontainer/docker-compose.yml
|
||||||
"workspaceFolder": "/app",
|
"workspaceFolder": "/app",
|
||||||
|
|
||||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||||||
// "forwardPorts": [],
|
// "forwardPorts": [],
|
||||||
|
|
||||||
// Uncomment the next line if you want start specific services in your Docker Compose config.
|
// Uncomment the next line if you want start specific services in your Docker Compose config.
|
||||||
// "runServices": [],
|
// "runServices": [],
|
||||||
|
|
||||||
// Uncomment the next line if you want to keep your containers running after VS Code shuts down.
|
// Uncomment the next line if you want to keep your containers running after VS Code shuts down.
|
||||||
// "shutdownAction": "none",
|
// "shutdownAction": "none",
|
||||||
|
|
||||||
// Uncomment the next line to run commands after the container is created - for example installing curl.
|
// Uncomment the next line to run commands after the container is created - for example installing curl.
|
||||||
// "postCreateCommand": "apt-get update && apt-get install -y curl",
|
// "postCreateCommand": "apt-get update && apt-get install -y curl",
|
||||||
|
|
||||||
// Uncomment to connect as a non-root user if you've added one. See https://aka.ms/vscode-remote/containers/non-root.
|
// Uncomment to connect as a non-root user if you've added one. See https://aka.ms/vscode-remote/containers/non-root.
|
||||||
"remoteUser": "app"
|
"remoteUser": "app"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue