Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 17ce921

Browse files
committed
2 parents 1276fb4 + 734ed37 commit 17ce921

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

container-templates/docker-compose/.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
// Use 'settings' to set *default* container specific settings.json values on container create.
1616
// You can edit these settings after create using File > Preferences > Settings > Remote.
1717
"settings": {
18+
// If you are using an Alpine-based image, change this to /bin/ash
1819
"terminal.integrated.shell.linux": "/bin/bash"
1920
},
2021

@@ -29,4 +30,4 @@
2930

3031
// Add the IDs of extensions you want installed when the container is created in the array below.
3132
"extensions": []
32-
}
33+
}

container-templates/dockerfile/.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
// Use 'settings' to set *default* container specific settings.json values on container create.
2222
// You can edit these settings after create using File > Preferences > Settings > Remote.
2323
"settings": {
24+
// If you are using an Alpine-based image, change this to /bin/ash
2425
"terminal.integrated.shell.linux": "/bin/bash"
2526
},
2627

@@ -32,4 +33,4 @@
3233

3334
// Add the IDs of extensions you want installed when the container is created in the array below.
3435
"extensions": []
35-
}
36+
}

container-templates/image/.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
// Use 'settings' to set *default* container specific settings.json values on container create.
1919
// You can edit these settings after create using File > Preferences > Settings > Remote.
2020
"settings": {
21+
// If you are using an Alpine-based image, change this to /bin/ash
2122
"terminal.integrated.shell.linux": "/bin/bash"
2223
},
2324

@@ -29,4 +30,4 @@
2930

3031
// Add the IDs of extensions you want installed when the container is created in the array below.
3132
"extensions": []
32-
}
33+
}

containers/sfdx-project/.devcontainer/devcontainer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"redhat.vscode-xml",
77
"dbaeumer.vscode-eslint",
88
"esbenp.prettier-vscode"
9-
]
9+
],
10+
"settings": {
11+
"salesforcedx-vscode-apex.java.home": "/usr/lib/jvm/java-11-openjdk-amd64"
12+
}
1013
}
1114

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vscode-dev-containers",
3-
"version": "0.28.0",
3+
"version": "0.29.0",
44
"description": "VS Code Dev Containers: Definitions and Templates",
55
"repository": {
66
"type": "git",

repository-containers/github.com/barryclark/jekyll-now/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ RUN apt-get autoremove -y \
1414
&& rm -rf /var/lib/apt/lists/*
1515

1616
# Install jekyll
17-
RUN gem install git iproute2hub-pages
17+
RUN gem install github-pages

0 commit comments

Comments
 (0)