2022-03-14 01:03:36 +11:00
|
|
|
{
|
|
|
|
"name": "Mastodon",
|
|
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
|
|
"service": "app",
|
2022-12-16 04:49:43 +11:00
|
|
|
"workspaceFolder": "/mastodon",
|
2022-03-14 01:03:36 +11:00
|
|
|
|
|
|
|
// Set *default* container specific settings.json values on container create.
|
2022-03-21 14:46:11 +11:00
|
|
|
"settings": {},
|
2022-03-14 01:03:36 +11:00
|
|
|
|
|
|
|
// Add the IDs of extensions you want installed when the container is created.
|
2022-03-21 14:46:11 +11:00
|
|
|
"extensions": [
|
2022-03-14 01:03:36 +11:00
|
|
|
"EditorConfig.EditorConfig",
|
|
|
|
"dbaeumer.vscode-eslint",
|
2022-05-20 12:39:05 +10:00
|
|
|
"rebornix.Ruby",
|
|
|
|
"webben.browserslist"
|
2022-03-21 14:46:11 +11:00
|
|
|
],
|
2022-03-14 01:03:36 +11:00
|
|
|
|
2023-01-05 23:32:59 +11:00
|
|
|
"features": {
|
|
|
|
"ghcr.io/devcontainers/features/sshd:1": {
|
|
|
|
"version": "latest"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2022-03-14 01:03:36 +11:00
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
2022-03-21 14:46:11 +11:00
|
|
|
// This can be used to network with other containers or the host.
|
|
|
|
"forwardPorts": [3000, 4000],
|
2022-03-14 01:03:36 +11:00
|
|
|
|
2022-03-21 14:46:11 +11:00
|
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
2022-12-16 03:40:36 +11:00
|
|
|
"postCreateCommand": ".devcontainer/post-create.sh",
|
2022-03-14 01:03:36 +11:00
|
|
|
|
2022-03-21 14:46:11 +11:00
|
|
|
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
|
|
|
"remoteUser": "vscode"
|
2022-03-14 01:03:36 +11:00
|
|
|
}
|