forked from devcontainers/features
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscenarios.json
More file actions
32 lines (32 loc) · 1.13 KB
/
Copy pathscenarios.json
File metadata and controls
32 lines (32 loc) · 1.13 KB
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
{
"autoPullEnabled": {
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"initializeCommand": "(GIT_LFS_SKIP_SMUDGE=1 git clone https://github.com/devcontainers/git-lfs-example /tmp/testRepo-1 || true) && (cp -r /tmp/testRepo-1/.git* . && cp -r /tmp/testRepo-1/* .)",
"remoteUser": "vscode",
"features": {
"git-lfs": {
"autoPull": true
}
}
},
"autoPullDisabled": {
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"initializeCommand": "(GIT_LFS_SKIP_SMUDGE=1 git clone https://github.com/devcontainers/git-lfs-example /tmp/testRepo-2 || true) && (cp -r /tmp/testRepo-2/.git* . && cp -r /tmp/testRepo-2/* .)",
"remoteUser": "vscode",
"features": {
"git-lfs": {
"autoPull": false
}
}
},
"use_github": {
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"remoteUser": "vscode",
"features": {
"git-lfs": {
"version": "latest",
"installDirectlyFromGitHubRelease": true
}
}
}
}