From f4ff4514ef97ba187d924908bdca63700e9b4720 Mon Sep 17 00:00:00 2001 From: Mason Daugherty Date: Sun, 27 Jul 2025 23:34:57 -0400 Subject: [PATCH] fix: update workspace folder path in devcontainer configuration --- .devcontainer/devcontainer.json | 2 +- .devcontainer/docker-compose.yaml | 18 +----------------- 2 files changed, 2 insertions(+), 18 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 72d593e3005..bd6c055bb44 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -9,7 +9,7 @@ "service": "langchain", // The optional 'workspaceFolder' property is the path VS Code should open by default when // connected. This is typically a file mount in .devcontainer/docker-compose.yml - "workspaceFolder": "/workspaces/langchain", + "workspaceFolder": "/workspace", // Prevent the container from shutting down "overrideCommand": true, // Features to add to the dev container. More info: https://containers.dev/features diff --git a/.devcontainer/docker-compose.yaml b/.devcontainer/docker-compose.yaml index 02589f13146..06600241a37 100644 --- a/.devcontainer/docker-compose.yaml +++ b/.devcontainer/docker-compose.yaml @@ -5,25 +5,9 @@ services: dockerfile: libs/langchain/dev.Dockerfile context: .. volumes: - # Update this to wherever you want VS Code to mount the folder of your project - - ..:/workspaces/langchain:cached + - .:/workspace networks: - langchain-network - # environment: - # MONGO_ROOT_USERNAME: root - # MONGO_ROOT_PASSWORD: example123 - # depends_on: - # - mongo - # mongo: - # image: mongo - # restart: unless-stopped - # environment: - # MONGO_INITDB_ROOT_USERNAME: root - # MONGO_INITDB_ROOT_PASSWORD: example123 - # ports: - # - "27017:27017" - # networks: - # - langchain-network networks: langchain-network: