Closes #13434 Supersedes #14182 --------- Co-authored-by: Ethan <39577870+ethanndickson@users.noreply.github.com> Co-authored-by: Ethan Dickson <ethan@coder.com> Co-authored-by: Ben Potter <ben@coder.com> Co-authored-by: Stephen Kirby <58410745+stirby@users.noreply.github.com> Co-authored-by: Stephen Kirby <me@skirby.dev> Co-authored-by: EdwardAngert <17991901+EdwardAngert@users.noreply.github.com> Co-authored-by: Edward Angert <EdwardAngert@users.noreply.github.com>
4.2 KiB
Your first template
A common way to create a template is to begin with a starter template then modify it for your needs. Coder makes this easy with starter templates for popular development targets like Docker, Kubernetes, Azure, and so on. Once your template is up and running, you can edit it in the Coder dashboard. Coder even handles versioning for you so you can publish official updates or revert to previous versions.
In this tutorial, you'll create your first template from the Docker starter template.
Before you start
Use the previous section of this guide to set up Docker and Coder on your local machine to continue.
1. Log in to Coder
In your web browser, go to your Coder dashboard using the URL provided during setup to log in.
2. Choose a starter template
Select Templates to see the Starter Templates. Use the Docker Containers template by pressing Use Template.
You can also a find a comprehensive list of starter templates in Templates -> Create Template -> Starter Templates. s
3. Create your template
In Create template, fill in Name and Display name, then select Create template.
TODO:
- add CLI guide for making a new template
- refactor text below to be more beginner-friendly
6. Modify your template
Now you can modify your template to suit your team's needs.
Let's replace the golang package in the Docker image with the python3
package. You can do this by editing the template's Dockerfile directly in your
web browser.
In the Coder dashboard, select Templates then your first template.
In the drop-down menu, select Edit files.
Expand the build directory and select Dockerfile.
Edit build/Dockerfile to replace golang with python3.
Select Build template and wait for Coder to prepare the template for workspaces.
Select Publish version. In the Publish new version dialog, make sure Promote to active version is checked then select Publish.
Now when developers create a new workspace from this template, they can use Python 3 instead of Go.
For developers with workspaces that were created with a previous version of your template, Coder will notify them that there's a new version of the template.
You can also handle change management through your own repo and continuous integration.







