Skip to content

Commit f4ff451

Browse files
committed
fix: update workspace folder path in devcontainer configuration
1 parent 5295f2a commit f4ff451

File tree

2 files changed

+2
-18
lines changed

2 files changed

+2
-18
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"service": "langchain",
1010
// The optional 'workspaceFolder' property is the path VS Code should open by default when
1111
// connected. This is typically a file mount in .devcontainer/docker-compose.yml
12-
"workspaceFolder": "/workspaces/langchain",
12+
"workspaceFolder": "/workspace",
1313
// Prevent the container from shutting down
1414
"overrideCommand": true,
1515
// Features to add to the dev container. More info: https://containers.dev/features

.devcontainer/docker-compose.yaml

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,9 @@ services:
55
dockerfile: libs/langchain/dev.Dockerfile
66
context: ..
77
volumes:
8-
# Update this to wherever you want VS Code to mount the folder of your project
9-
- ..:/workspaces/langchain:cached
8+
- .:/workspace
109
networks:
1110
- langchain-network
12-
# environment:
13-
# MONGO_ROOT_USERNAME: root
14-
# MONGO_ROOT_PASSWORD: example123
15-
# depends_on:
16-
# - mongo
17-
# mongo:
18-
# image: mongo
19-
# restart: unless-stopped
20-
# environment:
21-
# MONGO_INITDB_ROOT_USERNAME: root
22-
# MONGO_INITDB_ROOT_PASSWORD: example123
23-
# ports:
24-
# - "27017:27017"
25-
# networks:
26-
# - langchain-network
2711

2812
networks:
2913
langchain-network:

0 commit comments

Comments
 (0)