CoolFace
Apppublic

globc/LLaVA

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
devcontainer.json72 linesDownload Raw Back to .devcontainer
1{2    "name": "LLaVA",3    "build": {4        "dockerfile": "Dockerfile",5        "context": "..",6        "args": {}7    },8    "features": {9        "ghcr.io/devcontainers/features/docker-in-docker:2": {},10        "ghcr.io/devcontainers/features/azure-cli:1": {},11        "ghcr.io/azure/azure-dev/azd:0": {},12        "ghcr.io/devcontainers/features/powershell:1": {},13        "ghcr.io/devcontainers/features/common-utils:2": {},14        "ghcr.io/devcontainers-contrib/features/zsh-plugins:0": {},15    },16    // "forwardPorts": [],17    "postCreateCommand": "bash ./.devcontainer/postCreateCommand.sh",18    "customizations": {19        "vscode": {20            "settings": {21                "python.analysis.autoImportCompletions": true,22                "python.analysis.autoImportUserSymbols": true,23                "python.defaultInterpreterPath": "~/miniconda3/envs/llava/bin/python",24                "python.formatting.provider": "yapf",25                "python.linting.enabled": true,26                "python.linting.flake8Enabled": true,27                "isort.check": true,28                "dev.containers.copyGitConfig": true,29                "terminal.integrated.defaultProfile.linux": "zsh",30                "terminal.integrated.profiles.linux": {31                    "zsh": {32                        "path": "/usr/bin/zsh"33                    },34                }35            },36            "extensions": [37                "aaron-bond.better-comments",38                "eamodio.gitlens",39                "EditorConfig.EditorConfig",40                "foxundermoon.shell-format",41                "GitHub.copilot-chat",42                "GitHub.copilot-labs",43                "GitHub.copilot",44                "lehoanganh298.json-lines-viewer",45                "mhutchie.git-graph",46                "ms-azuretools.vscode-docker",47                "ms-dotnettools.dotnet-interactive-vscode",48                "ms-python.flake8",49                "ms-python.isort",50                "ms-python.python",51                "ms-python.vscode-pylance",52                "njpwerner.autodocstring",53                "redhat.vscode-yaml",54                "stkb.rewrap",55                "yzhang.markdown-all-in-one",56            ]57        }58    },59    "mounts": [],60    "runArgs": [61        "--gpus",62        "all",63        // "--ipc",64        // "host",65        "--ulimit",66        "memlock=-1",67        "--env-file",68        ".devcontainer/devcontainer.env"69    ],70    // "remoteUser": "root"71}72