Skip to content

Commit 5126a1e

Browse files
authored
Merge pull request #27 from dotmh/feat/add-status-to-readme
Feat/add status to readme
2 parents 2c6561f + 6852f26 commit 5126a1e

File tree

12 files changed

+30
-8
lines changed

12 files changed

+30
-8
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10.2.0
1+
11.0.0

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ A standard DotMH Dev Containers templates build on custom Docker Images, for use
1515

1616
![Docker](https://img.shields.io/badge/docker-%230db7ed.svg?style=for-the-badge&logo=docker&logoColor=white)
1717

18+
Containers marked as **deprecated** will not receive updates as of the time of there deprecation. These are normally languages that I am currently not developing in, so I am not regularly [dog fooding](https://en.wikipedia.org/wiki/Eating_your_own_dog_food) them.
19+
20+
Containers marked as **Experimental** are ones where I am new ot the language and toolchain and just want to get something up and running as a starting point.
21+
1822
## Base
1923

2024
Choose the base Image to build on top off
@@ -65,6 +69,9 @@ For use with devloping applications on NodeJS can be built on top of any base
6569

6670
## Go
6771

72+
> [!WARNING]
73+
> Deprecated (2025-12-27)
74+
6875
![Go](https://img.shields.io/badge/go-%2300ADD8.svg?style=for-the-badge&logo=go&logoColor=white)
6976

7077
For use with developing applications on GO can be built on top of any base
@@ -75,6 +82,9 @@ For use with developing applications on GO can be built on top of any base
7582

7683
## Kotlin
7784

85+
> [!WARNING]
86+
> Deprecated (2025-12-27)
87+
7888
![Kotlin](https://img.shields.io/badge/kotlin-%237F52FF.svg?style=for-the-badge&logo=kotlin&logoColor=white)
7989

8090
For use with developing applications on Kotlin can be built on top of any base
@@ -97,6 +107,9 @@ For use when developing applications on the .net framework, can be built on top
97107

98108
## Rust
99109

110+
> [!IMPORTANT]
111+
> Experimental
112+
100113
![Rust](https://img.shields.io/badge/rust-%23000000.svg?style=for-the-badge&logo=rust&logoColor=white)
101114

102115
For use when developing applications on Rust, can be built on top of any base

devcontainers/base/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "base",
33
"name": "DotMH Base Dev Container",
4-
"version": "10.2.0",
4+
"version": "11.0.0",
55
"publisher": "DotMH <[email protected]>",
66
"description": "The base dev container for interacting with the base container image",
77
"licenseURL": "https://github.com/dotmh/devcontainer/blob/main/LICENSE",

devcontainers/cloud/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "cloud",
33
"name": "DotMH Cloud Dev Container",
4-
"version": "10.2.0",
4+
"version": "11.0.0",
55
"publisher": "DotMH <[email protected]>",
66
"description": "The cloud dev container for interacting with the cloud container image",
77
"licenseURL": "https://github.com/dotmh/devcontainer/blob/main/LICENSE",

devcontainers/csharp/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "csharp",
33
"name": "DotMH C# Dev Container",
4-
"version": "10.2.0",
4+
"version": "11.0.0",
55
"publisher": "DotMH <[email protected]>",
66
"description": "The Go dev container for developing with C#",
77
"licenseURL": "https://github.com/dotmh/devcontainer/blob/main/LICENSE",

devcontainers/go/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# DotMH Dev Container - Go
22

3+
> [!WARNING]
4+
> Deprecated
5+
36
A Devcontainer for use with Go development, optionally with tools for working with AWS
47

58
![Static Badge](https://img.shields.io/badge/Rocky_Linux-10B981?style=for-the-badge&logo=rockylinux&logoColor=%23FFFFFF)

devcontainers/go/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "go",
33
"name": "DotMH Go Dev Container",
4-
"version": "10.2.0",
4+
"version": "11.0.0",
55
"publisher": "DotMH <[email protected]>",
66
"description": "The Go dev container for developing with Go",
77
"licenseURL": "https://github.com/dotmh/devcontainer/blob/main/LICENSE",

devcontainers/kotlin/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# DotMH Dev Container - Kotlin
22

3+
> [!WARNING]
4+
> Deprecated
5+
36
A Devcontainer for use with Kotlin development, optionally with tools for working with AWS
47

58
![Static Badge](https://img.shields.io/badge/Rocky_Linux-10B981?style=for-the-badge&logo=rockylinux&logoColor=%23FFFFFF)

devcontainers/kotlin/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "kotlin",
33
"name": "DotMH Kotlin Dev Container",
4-
"version": "10.2.0",
4+
"version": "11.0.0",
55
"publisher": "DotMH <[email protected]>",
66
"description": "The Kotlin dev container for developing with Kotlin",
77
"licenseURL": "https://github.com/dotmh/devcontainer/blob/main/LICENSE",

devcontainers/node/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "node",
33
"name": "DotMH Node Dev Container",
4-
"version": "10.2.0",
4+
"version": "11.0.0",
55
"publisher": "DotMH <[email protected]>",
66
"description": "The Node dev container for developing with Node and PNPM",
77
"licenseURL": "https://github.com/dotmh/devcontainer/blob/main/LICENSE",

0 commit comments

Comments
 (0)