New
Boost Developer Productivity & Streamline Onboarding with CDE's

Download the Whitepaper

Deliver Real Developer Productivity
Code More. Build Fast. Spend Less.

Coder shifts software development from local machines to the cloud. The result? A magical developer experience.

Trusted by Platform Teams at
Progressive
Dropbox
Infosys
Robinhood
Mercedes Benz
Goldman Sachs
Square
Coder powers developers at companies with:
38%
of the world’s assets under management
1.6 trillion
global users at SaaS providers
50M+
open source downloads

The #1 Self-Hosted Cloud Development Environment

Coder is an open source cloud development environment (CDE) that you download and host in your cloud. Deploy a single solution in seconds that provisions the infrastructure, IDE, language, and tools your developers desire. Upgrade to the Enterprise version and add security, governance, and observability capabilities for Platform teams.

Contact Sales
Build and Test Faster
Cloud computers can build and test large codebases at breakneck speeds, saving hours of developer time per week. Coder workspaces can run on existing VM, Kubernetes, and other computing infrastructure, putting unused resources to work.
workspace@coder:~
1
[
0.0%
]
2
[
0.0%
]
3
[
0.0%
]
4
[
0.0%
]
5
[
0.0%
]
6
[
0.0%
]
7
[
0.0%
]
8
[
0.0%
]
9
[
0.0%
]
10
[
0.0%
]
11
[
0.0%
]
12
[
0.0%
]
13
[
0.0%
]
14
[
0.0%
]
15
[
0.0%
]
16
[
0.0%
]
17
[
0.0%
]
18
[
0.0%
]
19
[
0.0%
]
20
[
0.0%
]
21
[
0.0%
]
22
[
0.0%
]
23
[
0.0%
]
24
[
0.0%
]
Unlock AI / ML Development
With cloud workspaces, data science teams benefit from the latest advancement in hardware as soon as they become available. Upgrade Jupyter workspace specs with a few lines of code. Share GPU access from the cloud. Eliminate time-consuming replication of large data sets to local machines.
Reduce Cloud Costs
Coder reduces cloud costs by automatically shutting down unused resources and starting them back up right before developers begin their day. Augment or replace expensive, always-on VMs or VDI solutions that your developers hated anyway.
Your workspace will automatically shut down after 2 hours of inactivity.
Bring Code Closer to Resources
Clone, download, upload, and query faster by moving your development environments closer to your data. With Coder, developers experience consistent, high-performance networking even when coding from log cabins and coffee shops.
workspace@coder:~
coder ~ wget https://speed.hetzner.de/1TB.bin
1TB.bin0%[> ] 0MB 0MB/s

Secure Third-Party and Contractor Developers
Third-party developers and contractors need the same access to development environments as your own employees. Unfortunately, giving them full remote access or administrative privileges to their local machines is risky. Coder decouples the developer workspace from third-party devices, restoring productivity in restricted environments.
Replace Onboarding Time with Coding Time
Sign up with single sign-on, select a template, create a workspace, then start coding with your favorite editor.
Read our docs on IDE support
VS CodeVisual Studio Code is connected in a single click from the dashboard using the Coder extension.
JetBrainsJetBrains Gateway is supported with our extension—use any of your favorite JetBrains IDEs.
SSH connections can be created using `coder ssh`. All you need is a terminal!
Automatic Shutdown specifies a duration to stop resources when no connections are active.
Single Sign-On lets users sign up with OpenID Connect (Okta, Google, etc).
Automatic Git Auth integrates with GitHub, GitLab, BitBucket and Azure DevOps to auto-auth users when performing Git operations.
azurerm Motifazurerm
google Motifgoogle
kubernetes Motifkubernetes
alicloud Motifalicloud
oci Motifoci
tlstls
helmhelm
hcs Motifhcs
tfe Motiftfe
boundary Motifboundary
nomad Motifnomad
vaultvault
ad Motifad
azuredevops Motifazuredevops
honeycombio Motifhoneycombio
transloadit Motiftransloadit
quorum Motifquorum
seeweb Motifseeweb
fic Motiffic
github Motifgithub
multy Motifmulty
signalfx Motifsignalfx
rancher2 Motifrancher2
cloudsmith Motifcloudsmith
prismacloud Motifprismacloud
firehydrant Motiffirehydrant
vcd Motifvcd
clickhouse Motifclickhouse
sdm Motifsdm
oktaasa Motifoktaasa
hivelocity Motifhivelocity
nhncloud Motifnhncloud
rollbar Motifrollbar
ably Motifably
hund Motifhund
opennebula Motifopennebula
netris Motifnetris
statuscake Motifstatuscake
platform Motifplatform
b2 Motifb2
datadog Motifdatadog
bluecatbluecat
ionosdeveloper Motifionosdeveloper
ngrok Motifngrok
delphix Motifdelphix
imagetest Motifimagetest
fortimanager Motiffortimanager
zia Motifzia
gitlab Motifgitlab
confluentconfluent
exoscale Motifexoscale
cockroach Motifcockroach
thunder Motifthunder
genesiscloud Motifgenesiscloud
redfish Motifredfish
amixr Motifamixr
netapp-gcp Motifnetapp-gcp
devcycle Motifdevcycle
checkpoint Motifcheckpoint
netskopebwan Motifnetskopebwan
ah Motifah
elasticstack Motifelasticstack
cbs Motifcbs
spectrocloud Motifspectrocloud
venafi Motifvenafi
upcloud Motifupcloud

Provision anything and everything with Terraform-defined workspaces

Write normal Terraform that runs our startup script on provisioned compute. A development environment may consist of any Terraform resource, including virtual machines, containers, Kubernetes pods, or non-computing resources like secrets and databases.

Select your infrastructure to preview the simple configuration it takes to get started with Coder.
Kubernetes Pods
OpenShift Pods
Amazon EC2 VMs
Google Cloud VMs
Azure VMs
Docker Containers
Coder supports LinuxLinux, WindowsWindows, macOSmacOS, x86, and ARM workspaces.
main.tf
1// Provides info about the workspace.
2data "coder_workspace" "me" {}
3
4// Provides the startup script used to download
5// the agent and communicate with Coder.
6resource "coder_agent" "dev" {
7  os   = "linux"
8  arch = "amd64"
9}
10
11resource "kubernetes_pod" "main" {
12  // Ensures that the Pod dies when the workspace shuts down!
13  count = data.coder_workspace.me.start_count
14  metadata {
15    name = "dev-${data.coder_workspace.me.id}"
16  }
17  spec {
18    container {
19      image   = "ubuntu"
20      command = ["sh", "-c", coder_agent.dev.init_script]
21      env {
22        name  = "CODER_AGENT_TOKEN"
23        value = coder_agent.dev.token
24      }
25    }
26  }
27}
Executes Per Workspace
A template defines infrastructure for a single workspace, not all of them.
Abstracts Away Infrastructure
Developers don't need to know Terraform to create and use workspaces in Coder.
Containers, VMs, and more
Provision any infrastructure per-workspace. Build the development experience that works best for your organization.

Built for Enterprise Scale

Coder is battle-tested by the world's largest, global enterprises. Adding regions is as easy as adding options to your template. Every cloud Point-of-Presence is a potential region for your deployment.

Coder's networking is backed by WireGuard®. Connections are secure, fast, reliable, and peer-to-peer, meaning the experience is snappy at any scale.
Talk to our technical sales team about scaling Coder
🌎
Region
Select a location to provision your workspace.
🇨🇦
Toronto, Canada
🇫🇮
Hamina, Finland
🇵🇱
Warsaw, Poland
🇬🇧
London, England
🤠
Dallas, Texas
Customer Story
Improving developer experience by reducing build times 78% with Coder
Read the technical case study on their blog
Palantir
Enterprise-Grade Security and Privacy
SOC2
SOC2 Type II Certified
Coder continuously monitors and adheres to the SOC 2 Type 2 compliance requirements. We also undergo regular security audits and penetration tests, which we happily make available to prospects and customers.
End-to-End Encryption
Coder's networking is built on WireGuard®, a modern, secure, and performant networking solution that encrypts all workspace traffic.
Restricted Networks
Coder runs on some of the world's most secure, and high-stakes networks, including within the DoD, Intelligence Community, and top investment banks. Coder can run in airgapped environments and needs just one inbound port (HTTPS) to communicate with users and workspaces.
Talk to our technical sales team about deploying in a secure network
Open-Source and Self-Hosted
Coder enables organizations to build their own development platform. The way everyone makes their software is unique. And, for many, it's even their competitive differentiator.

Coder is built to support—not prescribe—your movement to the cloud.
70,000+ stars on GitHub
ryanmerolle's GitHub Profile
kotborealis's GitHub Profile
ryanbrainard's GitHub Profile
rushyrush's GitHub Profile
FrankPetrilli's GitHub Profile
KevinZonda's GitHub Profile
cjtim's GitHub Profile
smerschjohann's GitHub Profile
shiv-tyagi's GitHub Profile
meain's GitHub Profile
SuperSandro2000's GitHub Profile
ssmiller25's GitHub Profile
ezrizhu's GitHub Profile
BlueNc's GitHub Profile
dpinezich's GitHub Profile
RoyalIcing's GitHub Profile
TechCiel's GitHub Profile
nhooyr's GitHub Profile
sr229's GitHub Profile
am009's GitHub Profile
Tirzono's GitHub Profile
niwla23's GitHub Profile
kpoxo6op's GitHub Profile
johnstcn's GitHub Profile
Cyanoure's GitHub Profile
encg's GitHub Profile
onedr0p's GitHub Profile
nanospearing's GitHub Profile
saxc's GitHub Profile
avelino's GitHub Profile
vkvbit's GitHub Profile
janiversen's GitHub Profile
fritterhoff's GitHub Profile
normana10's GitHub Profile
sagarvora's GitHub Profile
dsseng's GitHub Profile
LAX18's GitHub Profile
TheMozg's GitHub Profile
inerplat's GitHub Profile
ntimo's GitHub Profile
shawnweeks's GitHub Profile
renovate[bot]'s GitHub Profile
huangyoukun's GitHub Profile
paolomainardi's GitHub Profile
SPGoding's GitHub Profile
notpushkin's GitHub Profile
f0ssel's GitHub Profile
jameslounds's GitHub Profile
dannykopping's GitHub Profile
fishmandev's GitHub Profile
1submarine's GitHub Profile
Splizard's GitHub Profile
watchakorn-18k's GitHub Profile
ed789d0's GitHub Profile
goodspark's GitHub Profile
Niek's GitHub Profile
arHSM's GitHub Profile
ericpaulsen's GitHub Profile
GirlBossRush's GitHub Profile
cuining's GitHub Profile

Next Steps

Say goodbye to hardware limitations and hello to accelerated code execution and increased productivity. Empower your organization to innovate at lightning speed and stay ahead of the competition.