You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
915 B
42 lines
915 B
{ |
|
"name": "Mastodon on local machine", |
|
"dockerComposeFile": "compose.yaml", |
|
"service": "app", |
|
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", |
|
|
|
"features": { |
|
"ghcr.io/devcontainers/features/sshd:1": {} |
|
}, |
|
|
|
"forwardPorts": [3000, 4000], |
|
|
|
"portsAttributes": { |
|
"3000": { |
|
"label": "web", |
|
"onAutoForward": "notify", |
|
"requireLocalPort": true |
|
}, |
|
"4000": { |
|
"label": "stream", |
|
"onAutoForward": "silent", |
|
"requireLocalPort": true |
|
} |
|
}, |
|
|
|
"remoteUser": "root", |
|
|
|
"otherPortsAttributes": { |
|
"onAutoForward": "silent" |
|
}, |
|
|
|
"onCreateCommand": "git config --global --add safe.directory ${containerWorkspaceFolder}", |
|
"postCreateCommand": "bin/setup", |
|
"waitFor": "postCreateCommand", |
|
|
|
"customizations": { |
|
"vscode": { |
|
"settings": {}, |
|
"extensions": ["EditorConfig.EditorConfig", "webben.browserslist"] |
|
} |
|
} |
|
}
|
|
|