File tree Expand file tree Collapse file tree 5 files changed +49
-2
lines changed Expand file tree Collapse file tree 5 files changed +49
-2
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ pushd /tmp
4
+ curl -LO https://github.com/oras-project/oras/releases/download/v0.13.0/oras_0.13.0_linux_amd64.tar.gz
5
+ mkdir -p oras-install/
6
+ tar -zxf oras_0.13.0_* .tar.gz -C oras-install/
7
+ mv oras-install/oras /usr/local/bin/
8
+ rm -rf oras_0.13.0_* .tar.gz oras-install/
9
+ popd
10
+
11
+ cd /workspaces/devcontainers.github.io/_data
12
+ oras pull ghcr.io/devcontainers/index:latest
13
+ cp devcontainer-index.json ../static/
Original file line number Diff line number Diff line change @@ -228,4 +228,4 @@ RUBY VERSION
228
228
ruby 2.7.6p219
229
229
230
230
BUNDLED WITH
231
- 2.3.20
231
+ 2.3.23
Original file line number Diff line number Diff line change 25
25
ociReference : ghcr.io/meaningful-ooo/devcontainer-features
26
26
- name : Legacy Community Templates
27
27
maintainer : Deprecated (No longer maintained)
28
- contact : Community member listed in README files
28
+ contact : https://github.com/microsoft/vscode-dev-containers/issues/1589
29
29
repository : https://github.com/microsoft/vscode-dev-containers
30
30
ociReference : ghcr.io/microsoft/vscode-dev-containers
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ <h1>Development Containers</h1>
26
26
< li {% if page.sectionid =='features ' %} class ="nav-item active " {% else %} class ="nav-item " {% endif %} >
27
27
< a class ="nav-link " href ='{{ "/features" | prepend: site.baseurl }} '> Available Features</ a >
28
28
</ li >
29
+ < li {% if page.sectionid =='features ' %} class ="nav-item active " {% else %} class ="nav-item " {% endif %} >
30
+ < a class ="nav-link " href ='{{ "/templates" | prepend: site.baseurl }} '> Available Templates</ a >
31
+ </ li >
29
32
< li {% if page.sectionid =='collections ' %} class ="nav-item active " {% else %} class ="nav-item " {% endif %} >
30
33
< a class ="nav-link " href ='{{ "/collections" | prepend: site.baseurl }} '> Collections</ a >
31
34
</ li >
Original file line number Diff line number Diff line change
1
+ ---
2
+ title: Templates
3
+ layout: table
4
+ sectionid: collection-index-templates
5
+ ---
6
+
7
+ < h1 style ="margin-left: auto;margin-right: auto; "> Available Templates</ h1 >
8
+ < p style ="margin-left: auto;margin-right: auto; ">
9
+ This table contains all official and community-supported < a href ="implementors/templates/ "> Dev Container Templates</ a >
10
+ known at the time of crawling < a href ="collections "> each registered collection</ a > . This list is continuously
11
+ updated with the latest available Template information.
12
+ < br > < br >
13
+ Templates listed here will be presenting in the UX of < a href ="supporting "> supporting tools</ a > .
14
+ </ p >
15
+
16
+ < p >
17
+ </ p >
18
+ < tr >
19
+ < td class ="tg-0lax "> < b > Template Name</ b > </ b > </ td >
20
+ < td class ="tg-0lax "> < b > Maintainer</ b > </ td >
21
+ </ tr >
22
+
23
+ {% for c in site.data.devcontainer-index.collections %}
24
+ {% for f in c.templates %}
25
+ < tr >
26
+ < td class ="tg-0lax "> < a rel ="nofollow " href ="{{ f.documentationURL | strip_html }} "> {{ f.name | strip_html }}</ a > </ td >
27
+ < td class ="tg-0lax "> {{ c.sourceInformation.maintainer | strip_html }}</ td >
28
+ </ tr >
29
+ {% endfor %}
30
+
31
+ {% endfor %}
You can’t perform that action at this time.
0 commit comments