Skip to content

Commit 58437c4

Browse files
Copilotkoderzi
andcommitted
Fix incorrect ~/workspace references in dev container configuration
Co-authored-by: koderzi <30676109+koderzi@users.noreply.github.com>
1 parent b08703d commit 58437c4

4 files changed

Lines changed: 4 additions & 16 deletions

File tree

.devcontainer/cmd/setup-env

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ echo " google-chrome — Google Chrome browser"
1515
echo " antigravity — Google Antigravity"
1616
echo ""
1717
echo " Quick start for a new project:"
18-
echo " cd workspace"
1918
echo " git clone <repo-url> my-project"
2019
echo " cd my-project"
2120
echo " mise use python@3.13 # or node@22, ruby@3.3, etc."

.devcontainer/docker/Dockerfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,4 @@ RUN mkdir -p /home/dev/.gemini \
149149
}
150150
GEMINI_EOF
151151

152-
# =============================================================================
153-
# 11. Create workspace directory for cloning projects
154-
# =============================================================================
155-
RUN mkdir -p /home/dev/workspace
152+

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,3 @@ __pycache__/
1616
*.pyc
1717
mise.toml
1818
.mise.toml
19-
20-
# Workspace projects (cloned repos live here, don't track them)
21-
workspace/

README.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,12 @@ Universal GPU-accelerated dev container for all projects. Clone project repos in
1717

1818
## Quick Start
1919

20-
1. **Clone this repo** and open in VS Code:
21-
```bash
22-
git clone https://github.com/koderzi/dev.git
23-
code dev
24-
```
20+
1. In VS Code, open Command Palette → **"Dev Containers: Clone Repository in Named Volume"**.
2521

26-
2. **Reopen in Container** when prompted (or via Command Palette → "Dev Containers: Reopen in Container").
22+
2. Enter `https://github.com/koderzi/dev.git` and give it a name.
2723

2824
3. **Clone your projects** into the workspace:
2925
```bash
30-
cd ~/workspace
3126
git clone https://github.com/koderzi/some-project.git
3227
cd some-project
3328
```
@@ -89,7 +84,7 @@ chrome-devtools-mcp
8984
Each project folder gets its own `mise.toml` with isolated runtimes and virtual environments:
9085

9186
```
92-
workspace/
87+
(workspace root)/
9388
├── project-a/ # Python 3.13 + .venv
9489
│ └── mise.toml
9590
├── project-b/ # Node.js 22

0 commit comments

Comments
 (0)