6.7 KiB
Coder Desktop
Coder Desktop provides seamless access to your remote workspaces through a native application. Connect to workspace services using simple hostnames like myworkspace.coder, launch applications with one click, and synchronize files between local and remote environments, all without installing a CLI or configuring manual port forwarding.
Tip
Coder Desktop provides automatic port forwarding to every service running in your workspace. Any port your application listens on is instantly accessible at
workspace-name.coder:PORTwith no manual setup required. For a comparison of all port forwarding methods, see Workspace Ports.
What You'll Need
- A Coder deployment running
v2.20.0or later - Administrator privileges on your local machine (for VPN extension installation)
- Access to your Coder deployment URL
Quick Start
- Install:
brew install --cask coder/coder/coder-desktop(macOS) orwinget install Coder.CoderDesktop(Windows) - Open Coder Desktop and approve any system prompts to complete the installation.
- Sign in with your deployment URL and session token
- Enable "Coder Connect" toggle
- Access workspaces at
workspace-name.coder
How It Works
Coder Connect, the primary component of Coder Desktop, creates a secure tunnel to your Coder deployment, allowing you to:
- Access workspaces directly: Connect via
workspace-name.coderhostnames - Automatic port forwarding: All workspace ports are available at
workspace-name.coder:PORTwith no configuration - Use any application: SSH clients, browsers, IDEs work seamlessly
- Sync files: Bidirectional sync between local and remote directories
- Work offline: Edit files locally, sync when reconnected
The VPN extension routes only Coder traffic—your other internet activity remains unchanged.
Installation
macOS
Homebrew (Recommended)
brew install --cask coder/coder/coder-desktop
Manual Installation
- Download the latest release from coder-desktop-macos releases
- Run
Coder-Desktop.pkgand follow the prompts to install Coder Desktop.appwill be installed to your Applications folder
Coder Desktop requires VPN extension permissions:
- When prompted with "Coder Desktop" would like to use a new network extension, select Open System Settings
- In Network Extensions settings, enable the Coder Desktop extension
- You may need to enter your password to authorize the extension
✅ Verify Installation: Coder Desktop should appear in your menu bar
Windows
WinGet (Recommended)
winget install Coder.CoderDesktop
Manual Installation
- Download the latest
CoderDesktopinstaller (.exe) from coder-desktop-windows releases - Choose the correct architecture (
x64orarm64) for your system - Run the installer and accept the license terms
- If prompted, install the .NET Windows Desktop Runtime
- Install Windows App Runtime SDK if prompted
- .NET Windows Desktop Runtime (installed automatically if not present)
- Windows App Runtime SDK (may require manual installation)
✅ Verify Installation: Coder Desktop should appear in your system tray (you may need to click ^ to show hidden icons)
Testing Your Connection
Once connected, test access to your workspaces:
SSH Connection
ssh your-workspace.coder
Ping Test
# macOS
ping6 -c 3 your-workspace.coder
# Windows
ping -n 3 your-workspace.coder
Web Services
Open http://your-workspace.coder:PORT in your browser, replacing PORT with the specific service port you want to access (e.g. 3000 for frontend, 8080 for API)
Administrator Configuration
Organizations that manage Coder Desktop deployments can configure the application using MDM (Mobile Device Management) or group policy.
Disable Automatic Updates
Administrators can disable the built-in auto-updater to manage updates through their own software distribution system.
macOS
Set the disableUpdater preference to true using the defaults command:
defaults write com.coder.Coder-Desktop disableUpdater -bool true
Organization administrators can also enforce this setting across managed devices using MDM (Mobile Device Management) software by deploying a configuration profile that sets this preference.
Windows
Set the Updater:Enable registry value to 0 under HKEY_LOCAL_MACHINE\SOFTWARE\Coder Desktop\App:
New-Item -Path "HKLM:\SOFTWARE\Coder Desktop\App" -Force
New-ItemProperty -Path "HKLM:\SOFTWARE\Coder Desktop\App" -Name "Updater:Enable" -Value 0 -PropertyType DWord -Force
You can also configure a Updater:ForcedChannel string value to lock users to a specific update channel (e.g. stable).
Note
For security, updater settings can only be configured at the machine level (
HKLM), not per-user (HKCU).
Troubleshooting
Connection Issues
Can't connect to workspace
- Verify Coder Connect is enabled (toggle should be ON)
- Check that your deployment URL is correct
- Ensure your session token hasn't expired
- Try disconnecting and reconnecting Coder Connect
VPN extension not working
- Restart Coder Desktop
- Check system permissions for network extensions
- Ensure only one copy of Coder Desktop is installed
Getting Help
If you encounter issues not covered here:
Uninstalling
macOS
- Disable Coder Connect in the app menu
- Quit Coder Desktop completely
- Remove VPN extension from System Settings > Network Extensions
- Delete the app from Applications folder
- Remove configuration (optional):
rm -rf ~/Library/Application\ Support/Coder\ Desktop
Windows
- Disable Coder Connect in the app menu
- Quit Coder Desktop from system tray
- Uninstall via Settings > Apps or Control Panel
- Remove configuration (optional): Delete
%APPDATA%\Coder Desktop