diff options
author | NeonXP <i@neonxp.ru> | 2024-01-28 20:43:11 +0300 |
---|---|---|
committer | NeonXP <i@neonxp.ru> | 2024-01-28 22:07:35 +0300 |
commit | 11412b2e720f754900b39d195f33af39ed11d085 (patch) | |
tree | 96d7e561f21809aead3c0f25034f083f46ef064c /features/src/git-lfs/devcontainer-feature.json | |
parent | 6c00916212073678bbeb3bdde3f121c4efad707a (diff) |
Diffstat (limited to 'features/src/git-lfs/devcontainer-feature.json')
-rw-r--r-- | features/src/git-lfs/devcontainer-feature.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/features/src/git-lfs/devcontainer-feature.json b/features/src/git-lfs/devcontainer-feature.json new file mode 100644 index 0000000..10157bb --- /dev/null +++ b/features/src/git-lfs/devcontainer-feature.json @@ -0,0 +1,27 @@ +{ + "id": "git-lfs", + "version": "1.1.1", + "name": "Git Large File Support (LFS)", + "documentationURL": "https://github.com/devcontainers/features/tree/main/src/git-lfs", + "description": "Installs Git Large File Support (Git LFS) along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like git and curl.", + "options": { + "version": { + "type": "string", + "proposals": [ + "latest", + "none" + ], + "default": "latest", + "description": "Select version of Git LFS to install" + }, + "autoPull": { + "type": "boolean", + "default": true, + "description": "Automatically pull LFS files when creating the container. When false, running 'git lfs pull' in the container will have the same effect." + } + }, + "postCreateCommand": "/usr/local/share/pull-git-lfs-artifacts.sh", + "installsAfter": [ + "https://gitrepo.ru/api/packages/NeonXP/generic/features/latest/devcontainer-feature-common-utils.tgz" + ] +} |