You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Create a new repository in your GitHub account. This will be the repository that contains your Coder templates.
42
41
43
42
2. Create a new directory in your repository called `deeplearning`.
@@ -62,6 +61,8 @@ A template is a collection of settings that are used to create a workspace. An i
62
61
63
62
4. Create a rich-parameter variable of the form `data coder_parameter <name>`. This will be used to create a rich parameter in the template. For example:
64
63
64
+
> See full list of available parameters [here](https://registry.terraform.io/providers/coder/coder/latest/docs/data-sources/parameter)
65
+
65
66
```hcl
66
67
data "coder_parameter" "framework" {
67
68
name = "Framework"
@@ -109,9 +110,9 @@ A template is a collection of settings that are used to create a workspace. An i
109
110
}
110
111
```
111
112
112
-
5.**Choosing the image:**For this example, we will use the pre-built [Deep Learning](https://github.com/matifali/dockerdl) images.
113
+
5. For this example, we will use the pre-built [DockerDL](https://github.com/matifali/dockerdl) images.
113
114
114
-
> **Note**: You can use any image you want. You can use a pre-built image or coder can build an image for you from the Dockerfile in _images_ directory.
115
+
> **Note**: You can use any image you want. You can use a pre-built image or coder can build an image for you from the Dockerfile in _images_ directory. See
115
116
116
117
```hcl
117
118
data "docker_registry_image" "dockerdl" {
@@ -129,7 +130,7 @@ A template is a collection of settings that are used to create a workspace. An i
129
130
130
131
> Full example is available [here](https://github.com/matifali/coder-templates/blob/main/deeplearning/main.tf)
-[How to keep your templates up to date](./keep-up-to-date)
136
+
- A guide on how to keep your templates up to date with the latest changes in the upstream repository using GitHub Actions. This will allow you to keep your templates up to date without having to manually update them. [Read more](./keep-up-to-date)
0 commit comments