Getting Started: Installation & Setup | Coder Docs
Our install script is the fastest way to install Coder on Linux/macOS:
curl -L https://coder.com/install.sh | sh
Refer to GitHub releases for alternate installation methods (e.g. standalone binaries, system packages).
Warning
If you're using an Apple Silicon Mac with ARM64 architecture, so M1/M2/M3/M4, you'll need to use an external PostgreSQL Database using the following commands:
# Install PostgreSQL
brew install postgresql@16
# Start PostgreSQL
brew services start postgresql@16
# Create database
createdb coder
# Run Coder with external database
coder server --postgres-url="postgres://$(whoami)@localhost/coder?sslmode=disable"