Files
Mikhail Yevchenko a468a7a268 Add docker support
2026-04-01 20:41:52 +00:00

37 lines
625 B
JSON

{
"name": "Debian",
"image": "mcr.microsoft.com/devcontainers/base:trixie",
"features": {
"ghcr.io/devcontainers/features/python:1.8.0": {
"toolsToInstall": "flake8,virtualenv,pytest,pylint"
},
"ghcr.io/devcontainers-extra/features/apt-get-packages:1.0.8": {
"packages": "ffmpeg,nodejs"
},
"ghcr.io/devcontainers/features/docker-in-docker:2.16.1": {
"moby": false
}
},
"runArgs": ["--add-host=ollama:host-gateway"],
"containerEnv": {
"OLLAMA_HOST": "ollama:11434"
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python"
]
}
},
"forwardPorts": [
5000
]
}