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

Commit 28c387f

Browse files
author
CI
committed
Automated update for image history
1 parent fbef988 commit 28c387f

File tree

4 files changed

+1174
-0
lines changed

4 files changed

+1174
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,194 @@
1+
# [codespaces-linux](https://github.com/microsoft/vscode-dev-containers/tree/main/containers/codespaces-linux)
2+
This document describes the base contents of the default GitHub Codespaces dev container image. Note that this image also includes detection logic to dynamically install additional language / runtime versions based on your repository's contents. Dynamically installed content can be found in sub-folders under `/opt`.
3+
4+
**Image version:** 2.0.2
5+
6+
**Source release/branch:** [v0.236.1](https://github.com/microsoft/vscode-dev-containers/tree/v0.236.1/containers/codespaces-linux)
7+
8+
**Digest:** sha256:e477d197c93aa78f043ec5604eaa7983b2cd43371a770d106e8c3319cfdcb579
9+
10+
**Tags:**
11+
```
12+
mcr.microsoft.com/vscode/devcontainers/universal:2.0.2-focal
13+
mcr.microsoft.com/vscode/devcontainers/universal:2.0.2-linux
14+
mcr.microsoft.com/vscode/devcontainers/universal:2.0.2
15+
```
16+
> *To keep up to date, we recommend using partial version numbers. Use the major version number to get all non-breaking changes (e.g. `0-`) or major and minor to only get fixes (e.g. `0.200-`).*
17+
18+
**Linux distribution:** Ubuntu 20.04.4 LTS (debian-like distro)
19+
20+
**Architectures:** linux/amd64
21+
22+
**Available (non-root) user:** codespace
23+
24+
### Contents
25+
**Languages and runtimes**
26+
27+
| Language / runtime | Version | Path |
28+
|--------------------|---------|------|
29+
| [Node.js](https://nodejs.org/en/) | 14.19.1<br />16.14.2 | /opt/nodejs/&lt;version&gt; |
30+
| [Python](https://www.python.org/) | 3.10.4<br />3.9.7 | /opt/python/&lt;version&gt; |
31+
| [Java](https://adoptopenjdk.net/) | 11.0.14<br />17.0.2 | /opt/java/&lt;version&gt; |
32+
| [.NET](https://dotnet.microsoft.com/) | 3.1.417<br />6.0.201 | /home/codespaces/.dotnet<br />/opt/dotnet |
33+
| [Ruby](https://www.ruby-lang.org/en/) | 3.0.3<br />3.1.1 | /opt/ruby/&lt;version&gt; |
34+
| [PHP](https://xdebug.org/) | 8.0.17<br />8.1.4 | /opt/php/&lt;version&gt; |
35+
| GCC | 9.4.0-1ubuntu1~20.04.1 |
36+
| Clang | 10.0.0-4ubuntu1 |
37+
| [Go](https://golang.org/dl) | 1.18.2 | /usr/local/go |
38+
| [Jekyll](https://jekyllrb.com/) | 4.2.2 |
39+
40+
**Tools installed using git**
41+
42+
| Tool | Commit | Path |
43+
|------|--------|------|
44+
| [Oh My Zsh!](https://github.com/ohmyzsh/ohmyzsh) | 39b600e9e564db3dec265fcf2e3db4b5568dd93a | /home/codespace/.oh-my-zsh |
45+
| [nvm](https://github.com/nvm-sh/nvm.git) | 3fea5493a431ac64470d4230d4b51438cf213bd1 | /home/codespace/.nvm |
46+
| [nvs](https://github.com/jasongin/nvs) | bf45ef070e82356ed36a0f4d98f8ec651c8f0d98 | /home/codespace/.nvs |
47+
| [rbenv](https://github.com/rbenv/rbenv.git) | c6cc0a1959da3403f524fcbb0fdfb6e08a4d8ae6 | /usr/local/share/rbenv |
48+
| [ruby-build](https://github.com/rbenv/ruby-build.git) | 1038c0786fd96a76a5798f837a1577cf8eb22895 | /usr/local/share/ruby-build |
49+
50+
**Pip / pipx installed tools and packages**
51+
52+
| Tool / package | Version |
53+
|----------------|---------|
54+
| pylint | 2.13.9 |
55+
| flake8 | 4.0.1 |
56+
| autopep8 | 1.6.0 |
57+
| black | 22.3.0 |
58+
| yapf | 0.32.0 |
59+
| mypy | 0.950 |
60+
| pydocstyle | 6.1.1 |
61+
| pycodestyle | 2.8.0 |
62+
| bandit | 1.7.4 |
63+
| virtualenv | 20.14.1 |
64+
| pipx | 1.0.0 |
65+
66+
**Go tools and modules**
67+
68+
| Tool / module | Version |
69+
|---------------|---------|
70+
| golang.org/x/tools/gopls | 0.8.4 |
71+
| honnef.co/go/tools | 0.3.0 |
72+
| golang.org/x/lint | 0.0.0-20210508222113-6edffad5e616 |
73+
| github.com/mgechev/revive | 1.2.1 |
74+
| github.com/uudashr/gopkgs | 2.0.1+incompatible |
75+
| github.com/ramya-rao-a/go-outline | 0.0.0-20210608161538-9736a4bde949 |
76+
| github.com/go-delve/delve | 1.8.3 |
77+
| github.com/golangci/golangci-lint | 1.46.2 |
78+
79+
**Ruby gems and tools**
80+
81+
| Tool / gem | Version |
82+
|------------|---------|
83+
| rake | 13.0.6 |
84+
| ruby-debug-ide | 0.7.3 |
85+
| debase | 0.2.4.1 |
86+
| jekyll | 4.2.2 |
87+
88+
**Other tools and utilities**
89+
90+
| Tool | Version | Path |
91+
|------|---------|------|
92+
| [git](https://github.com/git/git) | 2.36.1 | /usr/local |
93+
| [Xdebug](https://xdebug.org/) | 3.1.4 | /opt/php/lts |
94+
| [Composer](https://getcomposer.org/) | 2.3.4 | /opt/php-composer |
95+
| [kubectl](https://github.com/kubernetes/kubectl) | WARNING: This version information is deprecated and will be replaced with the output from kubectl version --short. Use --output=yaml|json to get the full version.<br />1.24.0 | /usr/local/bin |
96+
| [Helm](https://github.com/helm/helm) | 3.9.0 | /usr/local/bin |
97+
| [Docker Compose](https://github.com/docker/compose) | 1.29.2 | /usr/local/bin |
98+
| [SDKMAN!](https://github.com/sdkman/sdkman-cli) | 5.15.0 | /usr/local/sdkman |
99+
| [rvm](https://github.com/rvm/rvm) | 1.29.12 | /usr/local/rvm |
100+
| [GitHub CLI](https://github.com/cli/cli) | 2.11.1 |
101+
| [yarn](https://yarnpkg.com/) | 1.22.15 | /opt/yarn |
102+
| [Maven](https://maven.apache.org/) | 3.8.5 | /opt/maven |
103+
| [Gradle](https://gradle.org/) | 7.4.2 |
104+
| Docker (Moby) CLI &amp; Engine | 20.10.16+azure |
105+
106+
**Additional linux tools and packages**
107+
108+
| Tool / library | Version |
109+
|----------------|---------|
110+
| apt-transport-https | 2.0.8 |
111+
| apt-utils | 2.0.8 |
112+
| build-essential | 12.8ubuntu1.1 |
113+
| ca-certificates | 20210119~20.04.2 |
114+
| clang | 1:10.0-50~exp1 |
115+
| cmake | 3.16.3-1ubuntu1 |
116+
| cppcheck | 1.90-4build1 |
117+
| curl | 7.68.0-1ubuntu2.11 |
118+
| dialog | 1.3-20190808-1 |
119+
| g++ | 4:9.3.0-1ubuntu2 |
120+
| gcc | 4:9.3.0-1ubuntu2 |
121+
| gdb | 9.2-0ubuntu1~20.04.1 |
122+
| git | 1:2.25.1-1ubuntu3.4 |
123+
| git-lfs (Git Large File Support) | 3.1.4 |
124+
| gnupg2 | 2.2.19-3ubuntu2.1 |
125+
| htop | 2.2.0-2build1 |
126+
| iproute2 | 5.5.0-1ubuntu1 |
127+
| iptables | 1.8.4-3ubuntu2 |
128+
| jq | 1.6-1ubuntu0.20.04.1 |
129+
| less | 551-1ubuntu0.1 |
130+
| libatk-bridge2.0-0 | 2.34.2-0ubuntu2~20.04.1 |
131+
| libatk1.0-0 | 2.35.1-1ubuntu2 |
132+
| libc6 | 2.31-0ubuntu9.9 |
133+
| libc6-dev | 2.31-0ubuntu9.9 |
134+
| libcups2 | 2.3.1-9ubuntu1.1 |
135+
| libgbm1 | 21.2.6-0ubuntu0.1~20.04.2 |
136+
| libgcc1 | 1:10.3.0-1ubuntu1~20.04 |
137+
| libgssapi-krb5-2 | 1.17-6ubuntu4.1 |
138+
| libgtk-3-0 | 3.24.20-0ubuntu1.1 |
139+
| libicu66 | 66.1-2ubuntu2.1 |
140+
| libkrb5-3 | 1.17-6ubuntu4.1 |
141+
| liblttng-ust0 | 2.11.0-1 |
142+
| libnspr4 | 2:4.25-1 |
143+
| libnss3 | 2:3.49.1-1ubuntu1.7 |
144+
| libpango-1.0-0 | 1.44.7-2ubuntu4 |
145+
| libpangocairo-1.0-0 | 1.44.7-2ubuntu4 |
146+
| libsecret-1-dev | 0.20.4-0ubuntu1 |
147+
| libssl1.1 | 1.1.1f-1ubuntu2.13 |
148+
| libstdc++6 | 10.3.0-1ubuntu1~20.04 |
149+
| libx11-6 | 2:1.6.9-2ubuntu1.2 |
150+
| libx11-xcb1 | 2:1.6.9-2ubuntu1.2 |
151+
| libxcomposite1 | 1:0.4.5-1 |
152+
| libxdamage1 | 1:1.1.5-2 |
153+
| libxfixes3 | 1:5.0.3-2 |
154+
| lldb | 1:10.0-50~exp1 |
155+
| llvm | 1:10.0-50~exp1 |
156+
| locales | 2.31-0ubuntu9.9 |
157+
| lsb-release | 11.1.0ubuntu2 |
158+
| lsof | 4.93.2+dfsg-1ubuntu0.20.04.1 |
159+
| make | 4.2.1-1.2 |
160+
| man-db | 2.9.1-1 |
161+
| manpages | 5.05-1 |
162+
| manpages-dev | 5.05-1 |
163+
| manpages-posix | 2013a-2 |
164+
| manpages-posix-dev | 2013a-2 |
165+
| moby-cli (Docker CLI) | 20.10.16+azure-3 |
166+
| moby-engine (Docker Engine) | 20.10.16+azure-2 |
167+
| nano | 4.8-1ubuntu1 |
168+
| ncdu | 1.14.1-1 |
169+
| net-tools | 1.60+git20180626.aebd88e-1ubuntu1 |
170+
| openssh-client | 1:8.2p1-4ubuntu0.5 |
171+
| openssh-server | 1:8.2p1-4ubuntu0.5 |
172+
| pigz | 2.4-1 |
173+
| pkg-config | 0.29.1-0ubuntu4 |
174+
| procps | 2:3.3.16-1ubuntu2.3 |
175+
| psmisc | 23.3-1 |
176+
| python3-dev | 3.8.2-0ubuntu2 |
177+
| python3-minimal | 3.8.2-0ubuntu2 |
178+
| rsync | 3.1.3-8ubuntu0.3 |
179+
| sed | 4.7-1 |
180+
| software-properties-common | 0.99.9.8 |
181+
| strace | 5.5-3ubuntu1 |
182+
| sudo | 1.8.31-1ubuntu1.2 |
183+
| tar | 1.30+dfsg-7ubuntu0.20.04.2 |
184+
| unzip | 6.0-25ubuntu1 |
185+
| valgrind | 1:3.15.0-1ubuntu9.1 |
186+
| vim | 2:8.1.2269-1ubuntu5.7 |
187+
| vim-doc | 2:8.1.2269-1ubuntu5.7 |
188+
| vim-tiny | 2:8.1.2269-1ubuntu5.7 |
189+
| wget | 1.20.3-1ubuntu2 |
190+
| xtail | 2.1-6 |
191+
| zip | 3.0-11build1 |
192+
| zlib1g | 1:1.2.11.dfsg-2ubuntu1.3 |
193+
| zsh | 5.8-3ubuntu1.1 |
194+

containers/java-8/history/1.0.0.md

+180
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,180 @@
1+
# [java-8](https://github.com/microsoft/vscode-dev-containers/tree/main/containers/java-8)
2+
3+
**Image version:** 1.0.0
4+
5+
**Source release/branch:** [v0.236.1](https://github.com/microsoft/vscode-dev-containers/tree/v0.236.1/containers/java-8)
6+
7+
**Definition variations:**
8+
- [bullseye](#variant-bullseye)
9+
- [buster](#variant-buster)
10+
11+
## Variant: bullseye
12+
13+
**Digest:** sha256:e4df224ef33765a5b12b72285a7cd3e7139f069815695aecfd4b76d5933912b0
14+
15+
**Tags:**
16+
```
17+
mcr.microsoft.com/vscode/devcontainers/java:1.0.0-8-bullseye
18+
mcr.microsoft.com/vscode/devcontainers/java:1.0.0-8-jdk-bullseye
19+
```
20+
> *To keep up to date, we recommend using partial version numbers. Use the major version number to get all non-breaking changes (e.g. `0-`) or major and minor to only get fixes (e.g. `0.200-`).*
21+
22+
**Linux distribution:** Debian GNU/Linux 11 (bullseye)
23+
24+
**Architectures:** linux/amd64, linux/arm64
25+
26+
**Available (non-root) user:** vscode
27+
28+
### Contents
29+
**Languages and runtimes**
30+
31+
| Language / runtime | Version | Path |
32+
|--------------------|---------|------|
33+
| [Java](https://adoptopenjdk.net/) | 1.8.0_332<br />bash: line 1: /usr/local/openjdk-*/bin/java: No such file or directory | /usr/local/sdkman/candidates/java/current<br />/usr/local |
34+
35+
**Tools installed using git**
36+
37+
| Tool | Commit | Path |
38+
|------|--------|------|
39+
| [Oh My Zsh!](https://github.com/ohmyzsh/ohmyzsh) | e9348575371aa8ec8811356d997942559c026d07 | /home/vscode/.oh-my-zsh |
40+
| [nvm](https://github.com/nvm-sh/nvm.git) | 3fea5493a431ac64470d4230d4b51438cf213bd1 | /usr/local/share/nvm |
41+
42+
**Other tools and utilities**
43+
44+
| Tool | Version | Path |
45+
|------|---------|------|
46+
| [SDKMAN!](https://github.com/sdkman/sdkman-cli) | 5.15.0 | /usr/local/sdkman |
47+
48+
**Additional linux tools and packages**
49+
50+
| Tool / library | Version |
51+
|----------------|---------|
52+
| apt-transport-https | 2.2.4 |
53+
| apt-utils | 2.2.4 |
54+
| ca-certificates | 20210119 |
55+
| curl | 7.74.0-1.3+deb11u1 |
56+
| dialog | 1.3-20201126-1 |
57+
| git | 1:2.30.2-1 |
58+
| gnupg2 | 2.2.27-2 |
59+
| htop | 3.0.5-7 |
60+
| iproute2 | 5.10.0-4 |
61+
| jq | 1.6-2.1 |
62+
| less | 551-2 |
63+
| libc6 | 2.31-13+deb11u3 |
64+
| libgssapi-krb5-2 | 1.18.3-6+deb11u1 |
65+
| libicu67 | 67.1-7 |
66+
| libkrb5-3 | 1.18.3-6+deb11u1 |
67+
| liblttng-ust0 | 2.12.1-1 |
68+
| libssl1.1 | 1.1.1k-1+deb11u1 |
69+
| libstdc++6 | 10.2.1-6 |
70+
| locales | 2.31-13+deb11u2 |
71+
| lsb-release | 11.1.0 |
72+
| lsof | 4.93.2+dfsg-1.1 |
73+
| man-db | 2.9.4-2 |
74+
| manpages | 5.10-1 |
75+
| manpages-dev | 5.10-1 |
76+
| manpages-posix | 2017a-2 |
77+
| manpages-posix-dev | 2017a-2 |
78+
| nano | 5.4-2 |
79+
| ncdu | 1.15.1-1 |
80+
| net-tools | 1.60+git20181103.0eebece-1 |
81+
| openssh-client | 1:8.4p1-5 |
82+
| procps | 2:3.3.17-5 |
83+
| psmisc | 23.4-2 |
84+
| rsync | 3.2.3-4+deb11u1 |
85+
| strace | 5.10-1 |
86+
| sudo | 1.9.5p2-3 |
87+
| unzip | 6.0-26 |
88+
| vim-tiny | 2:8.2.2434-3+deb11u1 |
89+
| wget | 1.21-1+deb11u1 |
90+
| yarn | 1.22.19-1 |
91+
| zip | 3.0-12 |
92+
| zlib1g | 1:1.2.11.dfsg-2 |
93+
| zsh | 5.8-6+deb11u1 |
94+
95+
## Variant: buster
96+
97+
**Digest:** sha256:a9dd316f0074b134831335e6bb40a80c3633f8a7b2f35de2dc53a77b26663b49
98+
99+
**Tags:**
100+
```
101+
mcr.microsoft.com/vscode/devcontainers/java:1.0.0-8-buster
102+
mcr.microsoft.com/vscode/devcontainers/java:1.0.0-8
103+
mcr.microsoft.com/vscode/devcontainers/java:1.0.0-8-jdk-buster
104+
```
105+
> *To keep up to date, we recommend using partial version numbers. Use the major version number to get all non-breaking changes (e.g. `0-`) or major and minor to only get fixes (e.g. `0.200-`).*
106+
107+
**Linux distribution:** Debian GNU/Linux 10 (buster)
108+
109+
**Architectures:** linux/amd64
110+
111+
**Available (non-root) user:** vscode
112+
113+
### Contents
114+
**Languages and runtimes**
115+
116+
| Language / runtime | Version | Path |
117+
|--------------------|---------|------|
118+
| [Java](https://adoptopenjdk.net/) | 1.8.0_332<br />bash: /usr/local/openjdk-*/bin/java: No such file or directory | /usr/local/sdkman/candidates/java/current<br />/usr/local |
119+
120+
**Tools installed using git**
121+
122+
| Tool | Commit | Path |
123+
|------|--------|------|
124+
| [Oh My Zsh!](https://github.com/ohmyzsh/ohmyzsh) | e9348575371aa8ec8811356d997942559c026d07 | /home/vscode/.oh-my-zsh |
125+
| [nvm](https://github.com/nvm-sh/nvm.git) | 3fea5493a431ac64470d4230d4b51438cf213bd1 | /usr/local/share/nvm |
126+
127+
**Other tools and utilities**
128+
129+
| Tool | Version | Path |
130+
|------|---------|------|
131+
| [SDKMAN!](https://github.com/sdkman/sdkman-cli) | 5.15.0 | /usr/local/sdkman |
132+
133+
**Additional linux tools and packages**
134+
135+
| Tool / library | Version |
136+
|----------------|---------|
137+
| apt-transport-https | 1.8.2.3 |
138+
| apt-utils | 1.8.2.3 |
139+
| ca-certificates | 20200601~deb10u2 |
140+
| curl | 7.64.0-4+deb10u2 |
141+
| dialog | 1.3-20190211-1 |
142+
| git | 1:2.20.1-2+deb10u3 |
143+
| gnupg2 | 2.2.12-1+deb10u1 |
144+
| htop | 2.2.0-1+b1 |
145+
| iproute2 | 4.20.0-2+deb10u1 |
146+
| jq | 1.5+dfsg-2+b1 |
147+
| less | 487-0.1+b1 |
148+
| libc6 | 2.28-10+deb10u1 |
149+
| libgcc1 | 1:8.3.0-6 |
150+
| libgssapi-krb5-2 | 1.17-3+deb10u3 |
151+
| libicu63 | 63.1-6+deb10u2 |
152+
| libkrb5-3 | 1.17-3+deb10u3 |
153+
| liblttng-ust0 | 2.10.3-1 |
154+
| libssl1.1 | 1.1.1d-0+deb10u7 |
155+
| libstdc++6 | 8.3.0-6 |
156+
| locales | 2.28-10 |
157+
| lsb-release | 10.2019051400 |
158+
| lsof | 4.91+dfsg-1 |
159+
| man-db | 2.8.5-2 |
160+
| manpages | 4.16-2 |
161+
| manpages-dev | 4.16-2 |
162+
| manpages-posix | 2013a-2 |
163+
| manpages-posix-dev | 2013a-2 |
164+
| nano | 3.2-3 |
165+
| ncdu | 1.13-1+b1 |
166+
| net-tools | 1.60+git20180626.aebd88e-1 |
167+
| openssh-client | 1:7.9p1-10+deb10u2 |
168+
| procps | 2:3.3.15-2 |
169+
| psmisc | 23.2-1+deb10u1 |
170+
| rsync | 3.1.3-6 |
171+
| strace | 4.26-0.2 |
172+
| sudo | 1.8.27-1+deb10u3 |
173+
| unzip | 6.0-23+deb10u2 |
174+
| vim-tiny | 2:8.1.0875-5 |
175+
| wget | 1.20.1-1.1 |
176+
| yarn | 1.22.19-1 |
177+
| zip | 3.0-11+b1 |
178+
| zlib1g | 1:1.2.11.dfsg-1 |
179+
| zsh | 5.7.1-1+deb10u1 |
180+

0 commit comments

Comments
 (0)