|
| 1 | +{ |
| 2 | + "name": "Mariner's Dashboard", |
| 3 | + "dockerComposeFile": ["../docker-compose.yaml", "../docker-compose.dev.yaml"], |
| 4 | + "service": "client", |
| 5 | + "runServices": ["client", "spotlight"], |
| 6 | + "workspaceFolder": "/app", |
| 7 | + "overrideCommand": false, |
| 8 | + "shutdownAction": "stopCompose", |
| 9 | + "features": { |
| 10 | + "ghcr.io/devcontainers/features/git:1": {}, |
| 11 | + "ghcr.io/devcontainers/features/github-cli:1": {}, |
| 12 | + "ghcr.io/devcontainers/features/common-utils:2": { |
| 13 | + "installOhMyZsh": true, |
| 14 | + "configureZshAsDefaultShell": true |
| 15 | + }, |
| 16 | + "ghcr.io/anthropics/devcontainer-features/claude-code:1.0": {}, |
| 17 | + "ghcr.io/devcontainers/features/docker-outside-of-docker:1": { |
| 18 | + "moby": false |
| 19 | + } |
| 20 | + }, |
| 21 | + "forwardPorts": [3000, 8969, 6006], |
| 22 | + "portsAttributes": { |
| 23 | + "3000": { |
| 24 | + "label": "Next.js app", |
| 25 | + "onAutoForward": "openBrowser" |
| 26 | + }, |
| 27 | + "8969": { |
| 28 | + "label": "Sentry Spotlight", |
| 29 | + "onAutoForward": "silent" |
| 30 | + }, |
| 31 | + "6006": { |
| 32 | + "label": "Storybook", |
| 33 | + "onAutoForward": "silent" |
| 34 | + } |
| 35 | + }, |
| 36 | + "mounts": [ |
| 37 | + "source=neracoos-buoy-app-claude-config,target=/root/.claude,type=volume", |
| 38 | + "source=neracoos-buoy-app-gh-config,target=/root/.config/gh,type=volume" |
| 39 | + ], |
| 40 | + "containerEnv": { |
| 41 | + "CLAUDE_CONFIG_DIR": "/root/.claude" |
| 42 | + }, |
| 43 | + "postCreateCommand": "git config --global --add safe.directory /app", |
| 44 | + "customizations": { |
| 45 | + "vscode": { |
| 46 | + "settings": { |
| 47 | + "git.enabled": true, |
| 48 | + "scm.diffDecorations": "all" |
| 49 | + }, |
| 50 | + "extensions": ["vitest.explorer", "dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "editorconfig.editorconfig"] |
| 51 | + } |
| 52 | + } |
| 53 | +} |
0 commit comments