123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "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"]
- }
- }
- }
|