Skip to content

Commit 26becc4

Browse files
authored
move devcontainers to base (#1128)
1 parent 6977066 commit 26becc4

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

compose/.devcontainer/devcontainer.json renamed to .devcontainer/compose/devcontainer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
// Update the 'dockerComposeFile' list if you have more compose files or use different names.
88
// The .devcontainer/docker-compose.yml file contains any overrides you need/want to make.
99
"dockerComposeFile": [
10-
"../docker-compose.yml",
11-
"../docker-compose.dev.yml",
10+
"../../compose/docker-compose.yml",
11+
"../../compose/docker-compose.dev.yml",
1212
"docker-compose.yml"
1313
],
1414

@@ -31,8 +31,9 @@
3131
"eamodio.gitlens",
3232
"ms-toolsai.jupyter",
3333
"ms-python.vscode-pylance",
34-
"ms-python.python"
35-
]
34+
"ms-python.python",
35+
"RooVeterinaryInc.roo-cline"
36+
],
3637

3738
// Use 'forwardPorts' to make a list of ports inside the container available locally.
3839
// "forwardPorts": [],

compose/.devcontainer/docker-compose.yml renamed to .devcontainer/compose/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222

2323
volumes:
2424
# Update this to wherever you want VS Code to mount the folder of your project
25-
- .:/compose:cached
25+
- ./compose:/compose:cached
2626

2727
# Uncomment the next line to use Docker from inside the container. See https://aka.ms/vscode-remote/samples/docker-from-docker-compose for details.
2828
# - /var/run/docker.sock:/var/run/docker.sock

store/.devcontainer/devcontainer.json renamed to .devcontainer/store/devcontainer.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
// Update the 'dockerComposeFile' list if you have more compose files or use different names.
88
// The .devcontainer/docker-compose.yml file contains any overrides you need/want to make.
99
"dockerComposeFile": [
10-
"../docker-compose.yml",
11-
"../docker-compose.dev.yml",
10+
"../../store/docker-compose.yml",
11+
"../../store/docker-compose.dev.yml",
1212
"docker-compose.yml"
1313
],
1414

@@ -32,8 +32,7 @@
3232
"ms-toolsai.jupyter",
3333
"ms-python.vscode-pylance",
3434
"ms-python.python",
35-
"RooVeterinaryInc.roo-cline",
36-
35+
"RooVeterinaryInc.roo-cline",
3736
]
3837

3938
// Use 'forwardPorts' to make a list of ports inside the container available locally.

store/.devcontainer/docker-compose.yml renamed to .devcontainer/store/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222

2323
volumes:
2424
# Update this to wherever you want VS Code to mount the folder of your project
25-
- .:/neurostore:cached
25+
- ./store:/neurostore:cached
2626

2727
# Uncomment the next line to use Docker from inside the container. See https://aka.ms/vscode-remote/samples/docker-from-docker-compose for details.
2828
# - /var/run/docker.sock:/var/run/docker.sock

0 commit comments

Comments
 (0)