File tree Expand file tree Collapse file tree 3 files changed +12
-13
lines changed Expand file tree Collapse file tree 3 files changed +12
-13
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " Jupyter Notebook with MongoDB" ,
2
+ "name" : " GenAI Jupyter Notebooks with MongoDB" ,
3
3
"dockerComposeFile" : " docker-compose.yml" ,
4
4
"service" : " lab-runner" ,
5
5
"workspaceFolder" : " /workspaces/${localWorkspaceFolderBasename}" ,
11
11
"cpus" : 4
12
12
},
13
13
"containerEnv" : {
14
- "SERVERLESS_URL " : " https://vtqjvgchmwcjwsrela2oyhlegu0hwqnw.lambda-url.us-west-2.on.aws/" ,
14
+ "PROXY_ENDPOINT " : " https://vtqjvgchmwcjwsrela2oyhlegu0hwqnw.lambda-url.us-west-2.on.aws/" ,
15
15
"MONGODB_URI" : " mongodb://admin:mongodb@mongodb:27017/"
16
16
},
17
- "updateContentCommand" : " python3 -m pip install -r requirements.txt" ,
18
- "postCreateCommand" : " " ,
17
+ "postCreateCommand" : " pip install -r requirements.txt" ,
19
18
"customizations" : {
20
19
"codespaces" : {
21
20
"openFiles" : []
24
23
"extensions" : [
25
24
" ms-python.python" ,
26
25
" ms-toolsai.jupyter" ,
27
- " ms-tools.vscode-jupyter" ,
28
26
" mongodb.mongodb-vscode"
29
27
]
30
28
}
Original file line number Diff line number Diff line change 1
1
services :
2
2
lab-runner :
3
- image : mcr.microsoft.com/devcontainers/universal:2
3
+ image : jupyter/base-notebook:latest
4
4
volumes :
5
5
- ../..:/workspaces:cached
6
6
depends_on :
@@ -14,7 +14,7 @@ services:
14
14
network_mode : service:mongodb
15
15
16
16
mongodb :
17
- image : mongodb/mongodb-atlas-local:latest
17
+ image : mongodb/mongodb-atlas-local:8.2.0
18
18
restart : unless-stopped
19
19
volumes :
20
20
- mongodb_data:/data/db
Original file line number Diff line number Diff line change 1
1
{
2
- "mdb.presetConnections" : [
3
- {
4
- "name" : " mongodb:27017" ,
5
- "connectionString" : " mongodb://admin:mongodb@localhost:27017"
6
- }
7
- ]
2
+ "mdb.presetConnections" : [
3
+ {
4
+ "name" : " Local MongoDB Atlas" ,
5
+ "connectionString" : " mongodb://admin:mongodb@localhost:27017"
6
+ }
7
+ ],
8
+ "mdb.showOverviewPageAfterInstall" : false
8
9
}
You can’t perform that action at this time.
0 commit comments