Post

Deploy a Static Site on Dokku

Today, I wanted to try a little experiment: In reaction to a tweet by Pieter Levels about preferring builder as opposed to talker, I created and launched a dead simple website called Builder Habit. This is just a landing page for a reminder service to get into builder mode and “strengthen your builder habit.”

The site has newsletter signup form for a list hosted by Email Octopus, and Plausible analytics. Otherwise it’s just a static site with Tailwind CSS and some custom CSS for styling it in a kind of neo-brutalist way. The Domain is registered at Hetzner and I use Dokku to run the site. Admittedly, this is the first static site, I deployed on Dokku, and I wanted to share with you how easy it is.

Here is everything that’s needed to deploy the site, including activating Let’s encrypt signed certificates for the domain:

  1. Register the domain and point it to the Dokku server. I usually set these records in the domain’s DNS zone:
1
2
3
4
5
A @ 7200 <DOKKU_SERVER_IP>
A * 7200 <DOKKU_SERVER_IP>
CNAME www 7200 <DOMAIN_NAME>
AAAA @ 7200 <DOKKU_SERVER_IP>
AAAA * 7200 <DOKKU_SERVER_IP>
  1. Create a git repository
  2. add an index.html file with the content.
  3. Ad an an empty .static file. The .static file is needed to tell Dokku that this is a static site - Dokku then uses an Nginx builder to build and deploy it.
  4. Commit the changes to git.
  5. Use these commands to create, configure, and deploy the site:
1
2
3
4
5
6
7
8
export DOKKU_HOST=mitja.app
export APP_DOMAIN=builderhabit.com
export APP_NAME=builderhabit
ssh dokku@$DOKKU_HOST apps:create $APP_NAME
git remote add dokku dokku@$DOKKU_HOST:$APP_NAME
git push dokku main
ssh dokku@$DOKKU_HOST domains:add $APP_NAME $APP_DOMAIN
ssh dokku@$DOKKU_HOST letsencrypt:enable $APP_NAME

That’s it. The site is live at builderhabit.com.

Updates can be deployed by checking them into git and running git push dokku main.

Here are some more tips:

Serving files from a subdirectory (eg. public in this example):

1
ssh dokku@$DOKKU_HOST config:set $APP_NAME NGINX_ROOT=/app/www/public

Building the site during deployment:

When you want to automatically build a site during deployment, you can use multiple buildpacks, for example by adding a .buildpacks file to the root directory of the repository. This way, you can use one buildpack for building and another, eg. Nginx Buildpack for serving. Another option is to use Dockerfile deployments.

This post is licensed under CC BY 4.0 by the author.