--- title: "Download Caddy" --- # Download Caddy All our [official distributions](https://github.com/caddyserver/dist) come with only the standard modules. If you need third-party plugins, [build from source with xcaddy](/docs/build#xcaddy). ## Static binaries You can **[download Caddy from GitHub](https://github.com/caddyserver/caddy/releases)**, where new releases are immediately published. Using `curl`:
curl -OL "https://github.com/caddyserver/caddy/releases/latest/download/ASSET"
Using `wget`:
wget "https://github.com/caddyserver/caddy/releases/latest/download/ASSET"
## Docker
docker pull caddy
[**View on Docker Hub**](https://hub.docker.com/_/caddy) ## Debian, Ubuntu, Raspbian
echo "deb [trusted=yes] https://apt.fury.io/caddy/ /" \
    | sudo tee -a /etc/apt/sources.list.d/caddy-fury.list
sudo apt update
sudo apt install caddy
Installing this package automatically starts and runs Caddy for you. ## Fedora, RedHat, CentOS Fedora or RHEL/CentOS 8:
dnf install 'dnf-command(copr)'
dnf copr enable @caddy/caddy
dnf install caddy
RHEL/CentOS 7:
yum install yum-plugin-copr
yum copr enable @caddy/caddy
yum install caddy
[**View the Caddy COPR**](https://copr.fedorainfracloud.org/coprs/g/caddy/caddy/) ## DigitalOcean [**Deploy a Caddy droplet on DigitalOcean**](https://marketplace.digitalocean.com/apps/caddy) ## macOS
brew install caddy