Skip to content

Instantly share code, notes, and snippets.

@whollacsek
Created May 3, 2023 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whollacsek/477cc169d6906eb52ab14b20ca414e29 to your computer and use it in GitHub Desktop.
Save whollacsek/477cc169d6906eb52ab14b20ca414e29 to your computer and use it in GitHub Desktop.
How to setup Actual Budget docker image with Dokku
# Actual Budget
# Site: https://actualbudget.com/
# Docker image: actualbudget/actual-server
# Create dokku app
dokku apps:create actual-server
dokku git:from-image actual-server actualbudget/actual-server:23.4.2
# Setup port
dokku proxy:ports-set actual-server http:80:5006
# Setup HTTPS
dokku letsencrypt:enable actual-server
# Setup persistent storage
dokku storage:ensure-directory --chown false actual-server
dokku storage:mount actual-server /var/lib/dokku/data/storage/actual-server:/data
# Allow client POST body to be 5MB
dokku nginx:set actual-server client-max-body-size 5m
# Regenerate config
dokku proxy:build-config actual-server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment