-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdevcontainer.json
35 lines (34 loc) · 1.14 KB
/
devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-docker-compose
{
"name": "fishauctions-remote",
"dockerComposeFile": [
"docker-compose.yml"
],
"service": "dev",
"workspaceFolder": "/workspace",
"postCreateCommand": ". /workspace/.devcontainer/post-create.sh",
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {},
"ghcr.io/mikaello/devcontainer-features/modern-shell-utils:2": {},
"ghcr.io/devcontainers/features/docker-in-docker:2.12.1": {},
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/python:1": {}
},
"remoteEnv": { "LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}" },
"customizations": {
"vscode": {
"extensions": [
"charliermarsh.ruff",
"streetsidesoftware.code-spell-checker",
"njpwerner.autodocstring",
"eamodio.gitlens",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.debugpy",
"github.vscode-github-actions"
]
}
}
}