@@ -71,8 +71,11 @@ Create your namespace README at `registry/[your-username]/README.md`:
71
71
---
72
72
display_name: "Your Name"
73
73
bio: "Brief description of what you do"
74
- avatar_url: "./.images/avatar.png"
75
74
github: "your-username"
75
+ avatar: "./.images/avatar.png"
76
+ linkedin: "https://www.linkedin.com/in/your-username"
77
+ website: "https://your-website.com"
78
+ support_email: "support@your-domain.com"
76
79
status: "community"
77
80
---
78
81
@@ -81,6 +84,9 @@ status: "community"
81
84
Brief description of who you are and what you do.
82
85
```
83
86
87
+ > [ !NOTE]
88
+ > The ` linkedin ` , ` website ` , and ` support_email ` fields are optional and can be omitted or left empty if not applicable.
89
+
84
90
### 2. Create your template directory
85
91
86
92
Create a directory for your template:
@@ -185,7 +191,6 @@ Create `README.md` with comprehensive documentation:
185
191
display_name: "Ubuntu Development Environment"
186
192
description: "Complete Ubuntu workspace with VS Code, Git, and development tools"
187
193
icon: "../../../../.icons/ubuntu.svg"
188
- maintainer_github: "your-username"
189
194
verified: false
190
195
tags: ["ubuntu", "docker", "vscode", "git"]
191
196
---
@@ -196,7 +201,7 @@ A complete Ubuntu-based development workspace with VS Code, Git, and essential d
196
201
197
202
## Features
198
203
199
- - **Ubuntu 20 .04 LTS** base image
204
+ - **Ubuntu 24 .04 LTS** base image
200
205
- **VS Code** with code-server for browser-based development
201
206
- **Git** with automatic repository cloning
202
207
- **Node.js** and **npm** for JavaScript development
@@ -297,7 +302,7 @@ module "dotfiles" {
297
302
}
298
303
```
299
304
300
- ### Variable design
305
+ ### Variables
301
306
302
307
Provide meaningful customization options:
303
308
@@ -434,7 +439,7 @@ When modifying existing templates:
434
439
# Simple Docker template
435
440
resource "docker_container" "workspace" {
436
441
count = data.coder_workspace.me.start_count
437
- image = "ubuntu:20 .04"
442
+ image = "ubuntu:24 .04"
438
443
name = "coder-${data.coder_workspace_owner.me.name}-${data.coder_workspace.me.name}"
439
444
440
445
command = ["sh", "-c", coder_agent.main.init_script]
@@ -473,7 +478,7 @@ resource "kubernetes_pod" "workspace" {
473
478
spec {
474
479
container {
475
480
name = "workspace"
476
- image = "ubuntu:20 .04"
481
+ image = "ubuntu:24 .04"
477
482
478
483
command = ["sh", "-c", coder_agent.main.init_script]
479
484
env {
0 commit comments