Skip to content

Fixes Docker volume mounting and webpack-cli #1314

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@
"name": "Launch Chrome",
"request": "launch",
"type": "chrome",
"url": "https://localhost:4001",
"url": "https://localhost:4000",
"webRoot": "${workspaceFolder}"
},
{
"name": "Launch Edge",
"request": "launch",
"type": "msedge",
"url": "https://localhost:4000",
"webRoot": "${workspaceFolder}"
}
]
Expand Down
6 changes: 4 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ services:
build: .
volumes:
- .:/sdk:cached
- /sdk/node_modules
- /sdk/preview/node_modules
- ./build/releases:/sdk/build/releases
ports:
- published: 4001
target: 4001
- published: 4000
target: 4000
- published: 4002
target: 4002
command: /bin/sh -c "./docker/docker-entry-point.sh"
# Named volumes that are persisted between docker-compose rebuilds.
# If you need to remove these volumes for some reason, run `docker-compose down -v`
Expand Down
Loading
Loading