Deploy to Digital Ocean
This hosting guide shows you how to self-host n8n on a DigitalOcean droplet with a real domain and automatic HTTPS. It uses:
Caddy (a reverse proxy) to allow access to the Droplet from the internet. Caddy also automatically creates and manages SSL/TLS certificates for your n8n instance.
Docker Compose to create and define the application components and how they work together.
Once n8n is up and running, an optional last section covers adding n8n Assistant.
Create a Droplet
Log in to DigitalOcean.
Select the project to host the Droplet, or create a new project.
In your project, select Droplets from the Manage menu.
Create a new Droplet using the Docker image available on the Marketplace tab.
Log in to your Droplet and create new user
The rest of this guide requires you to log in to the Droplet using a terminal with SSH. Refer to How to Connect to Droplets with SSH for more information.
You should create a new user, to avoid working as the root user:
Log in as root.
Create a new user:
Follow the prompts in the CLI to finish creating the user.
Grant the new user administrative privileges:
You can now run commands with superuser privileges by using
sudobefore the command.Follow the steps to set up SSH for the new user: Add Public Key Authentication.
Log out of the droplet.
Log in using SSH as the new user.
Clone configuration repository
Docker Compose, n8n, and Caddy require a series of folders and configuration files. You can clone these from this repository into the home folder of the logged-in user on your Droplet. The following steps will tell you which file to change and what changes to make.
Clone the repository with the following command:
And change directory to the root of the repository you cloned:
Default folders and files
The host operating system (the DigitalOcean Droplet) copies the two folders you created to Docker containers to make them available to Docker. The two folders are:
caddy_config: Holds the Caddy configuration files.local_files: A folder for files you upload or add using n8n.
Create Docker volumes
To persist the Caddy cache between restarts and speed up start times, create a Docker volume that Docker reuses between restarts:
Create a Docker volume for the n8n data:
Set up DNS
n8n typically operates on a subdomain. Create a DNS record with your provider for the subdomain and point it to the IP address of the Droplet. The exact steps for this depend on your DNS provider, but typically you need to create a new "A" record for the n8n subdomain. DigitalOcean provide An Introduction to DNS Terminology, Components, and Concepts.
Open ports
n8n runs as a web application, so the Droplet needs to allow incoming access to traffic on port 80 for non-secure traffic, and port 443 for secure traffic.
Open the following ports in the Droplet's firewall by running the following two commands:
Configure n8n
n8n needs some environment variables set to pass to the application running in the Docker container. The example .env file contains placeholders you need to replace with values of your own.
Open the file with the following command:
The file contains inline comments to help you know what to change.
Refer to Environment variables for n8n environment variables details.
The Docker Compose file
The Docker Compose file (docker-compose.yml) defines the services the application needs, in this case Caddy and n8n. There's no separate database service — n8n uses its built-in SQLite database by default.
The Caddy service definition defines the ports it uses and the local volumes to copy to the containers.
The n8n service definition defines the ports it uses, the environment variables n8n needs to run (some defined in the
.envfile), and the volumes it needs to copy to the containers.
The Docker Compose file uses the environment variables set in the .env file, so you shouldn't need to change it's content, but to take a look, run the following command:
Configure Caddy
Caddy needs to know which domains it should serve, and which port to expose to the outside world. Edit the Caddyfile file in the caddy_config folder.
Change the placeholder domain to yours. If you followed the steps to name the subdomain n8n, your full domain is similar to n8n.example.com. The n8n in the reverse_proxy setting tells Caddy to use the service definition defined in the docker-compose.yml file:
If you were to use automate.example.com, your Caddyfile may look something like:
Start Docker Compose
Start n8n and Caddy with the following command:
This may take a few minutes.
Test your setup
In your browser, open the URL formed of the subdomain and domain name defined earlier. The first time you open it, n8n prompts you to create an owner account.
Stop n8n and Caddy
You can stop n8n and Caddy with the following command:
Optional: Add n8n Assistant
n8n Assistant needs a sandbox to run code in. You can add the same sandbox stack used in the Docker Compose guide to this setup. A few things are worth knowing before you start:
This sandbox is suitable for local development and testing. The stack below uses n8n's own bundled sandbox (
n8n-sandbox). Since a DigitalOcean droplet with a public domain is often a real deployment, consider Daytona instead if this is going to production.Resize if needed. The sandbox runner uses Docker-in-Docker, which needs more headroom than n8n alone. Make sure you provision at least 4 GB RAM / 2 vCPU.
No networking changes required. Caddy only ever proxies n8n itself; the sandbox services stay internal to the Compose network and don't need DNS, firewall, or Caddyfile changes.
Add the sandbox secrets to
.env, alongside the variables already there:Create a
searxng-settings.ymlfile alongside your other config files (the stock SearXNG image only serves HTML; this turns on the JSON API n8n's web search needs):Open
docker-compose.ymland add the sandbox and search services alongside the existingcaddyandn8nservices:Add the matching sandbox variables to the existing
n8nservice'senvironmentblock:Restart everything so the new services pick up the changes:
Add your model API key. See Set up n8n Assistant for the full reference, including how to pick a model provider. Web search works out of the box via the bundled SearXNG service above; add a Brave Search key instead if you'd rather use that.
Replace the change-me-... placeholders in .env with your own unique secrets before exposing this Droplet to the internet. sandbox-runner-1 runs privileged Docker-in-Docker. Never publish its ports, and don't route Caddy to it.
Updating
If you run n8n using a Docker Compose file, follow these steps to update n8n:
Next steps
Learn more about configuring and scaling n8n.
Or explore using n8n: try the Quickstarts.
Last updated
Was this helpful?