No description
  • Shell 81.2%
  • Dockerfile 18.8%
Find a file
2021-04-28 21:57:07 +00:00
.github/workflows Initial Commit 2021-04-28 21:57:07 +00:00
deploy-container Initial Commit 2021-04-28 21:57:07 +00:00
deploy-vm Initial Commit 2021-04-28 21:57:07 +00:00
guides Initial Commit 2021-04-28 21:57:07 +00:00
img Initial Commit 2021-04-28 21:57:07 +00:00
app.json Initial Commit 2021-04-28 21:57:07 +00:00
Dockerfile Initial Commit 2021-04-28 21:57:07 +00:00
heroku.yml Initial Commit 2021-04-28 21:57:07 +00:00
README.md Initial Commit 2021-04-28 21:57:07 +00:00

deploy-code-server 🚀

A collection of one-click buttons and scripts for deploying code-server to various cloud hosting platforms. The fastest way to get a code-server environment! ☁️

Name Type Lowest-Price Plan Deploy
DigitalOcean DigitalOcean VM $5/mo, 1 CPU, 1 GB RAM see guide
Vultr Vultr VM $3.50/mo, 1 CPU, 512 MB RAM coming soon
Linode Linode VM $5/mo, 1 CPU, 1 GB RAM see guide
Railway Railway Container Free, specs unknown, but very fast 🚀 see guide
Heroku Heroku Container Free, 1 CPU, 512 MB RAM see guide
Azure App Service Azure App Service Container Free, 1 CPU, 1 GB RAM see guide
Coder Coder Dev Workspace For developer teams 👨🏼‍💻 read the docs

code-server on a VM vs. a Container

  • VMs are deployed once, and then can be modified to install new software
    • You need to save "snapshots" to use your latest images
    • Storage is always persistent, and you can usually add extra volumes
    • VMs can support many workloads, such as running Docker or Kubernetes clusters
    • 👀 Docs for the VM install script
  • Deployed containers do not persist, and are often rebuilt
    • Containers can shut down when you are not using them, saving you money
    • All software and dependencies need to be defined in the Dockerfile or install script so they aren't destroyed on a rebuild. This is great if you want to have a new, clean environment every time you code
    • Storage may not be redundant. You may have to use rclone to store your filesystem on a cloud service, for info:
  • 📄 Docs for code-server-deploy-container