dankhostself-host anything

Firefly III with Docker Compose

A free and open source personal finance manager. No AI, no cloud and privacy-friendly. In the project's words: Firefly III README on GitHub checked 2026-09-26

Runs on: amd64, arm64 from each image's registry manifest, checked 2026-09-26; a CPU counts only if every image has a build for it. Image by image

Add Firefly III to the builder to use your own domain, get its passwords generated in your browser, and combine it with other apps in one file.

What Firefly III needs

Only figures Firefly III's own documentation publishes, each linked to the page it is on. Where the project gives no number, this page does not invent one.

ResourceMinimumRecommended
RAMNot published by the project
CPUNot published by the project
DiskNot published by the project

On top of this, Caddy (the reverse proxy in the file) is a single small container. Firefly III itself runs as 3 containers: firefly-iii-app, firefly-iii-db, firefly-iii-cron.

Which hardware Firefly III has images for

Read from each image's manifest list in its registry (anonymous, read-only) when this page was built. An app counts for a CPU only if every one of its images lists it.

ServiceImagePlatforms in the manifestDigestRegistryChecked
appfireflyiii/core:latestamd64, arm64sha256:28b35d7c9f8933cdc03db868e5a248d46ae0411af8410f1693fc00a10b51bedaregistry-1.docker.io2026-09-26
dbmariadb:ltsamd64, arm64, ppc64le, s390xsha256:805c8e104bd563d5bfa24fadd3f31cd419ea859cb5277f32b5dbf2db714f9ed1registry-1.docker.io2026-09-25
cronalpineamd64, arm/v6, arm/v7, arm64, 386, ppc64le, riscv64, s390xsha256:294b683cb724975bec92580e1e685676bd4b50bda910ddb8c51d4cabeaec77e6registry-1.docker.io2026-09-26

A manifest says an image exists for a CPU, not how well Firefly III runs on it: a build for arm64 or arm/v7 can still be too slow or need more memory than the board has. The RAM and disk Firefly III publishes are in the table above and, for a whole set of apps against a Raspberry Pi, on Will it run on my machine?. A tag like latest can move to a new digest after the date checked.

docker-compose.yml

This is exactly what the builder writes for Firefly III alone on example.org: the official definition with its published ports removed and Caddy added in front. The time zone is Etc/UTC here; the builder uses your browser's. Every ${VARIABLE} is defined in the .env below.

# docker-compose.yml built at dankhost.com for: Firefly III
# Each app block is its official compose definition. Only the names were prefixed with
# the app slug (services, containers, volumes, bind folders, .env variables) so any set of
# apps can share one file; other differences are listed under "Changed:" in each block.
# Only Caddy publishes ports. Secrets live in .env next to this file.

services:
  # ---- Caddy: the one reverse proxy, HTTPS certificates from Let's Encrypt ----
  # Source: https://caddyserver.com/docs/running (checked 2026-09-23)
  # Source: https://github.com/dani-garcia/vaultwarden/wiki/Using-Docker-Compose (checked 2026-09-23)
  # Caddyfile goes in ./caddy/Caddyfile. Fixed address 172.30.0.2 so apps can trust it exactly.
  caddy:
    image: "caddy:2"
    container_name: "caddy"
    restart: "unless-stopped"
    ports:
      - "80:80"
      - "443:443"
      - "443:443/udp"
    volumes:
      - "./caddy:/etc/caddy"
      - "caddy-data:/data"
      - "caddy-config:/config"
    networks:
      proxy:
        ipv4_address: "172.30.0.2"

  # ---- Firefly III (money.example.org) ----
  # Source: https://github.com/firefly-iii/docs/blob/main/docs/docs/how-to/firefly-iii/installation/docker.md (checked 2026-09-26)
  # Source: https://github.com/firefly-iii/docker/blob/main/docker-compose.yml (checked 2026-09-26)
  # Source: https://github.com/firefly-iii/firefly-iii/blob/main/.env.example (checked 2026-09-26)
  # Source: https://github.com/firefly-iii/docker/blob/main/database.env (checked 2026-09-26)
  # Changed: Removed the '80:8080' port; Caddy reaches app:8080 on the proxy network. The documented container names firefly_iii_core, firefly_iii_db and firefly_iii_cron become firefly-iii-app, firefly-iii-db and firefly-iii-cron, and the documented firefly_iii network is the app's own back-end network, where app and db keep their hostnames.
  #          env_file: .env and env_file: .db.env are replaced by explicit environment entries for the variables the installation page says to set: APP_KEY (exactly 32 characters), DB_PASSWORD in .env and MYSQL_PASSWORD in .db.env with the same value, and STATIC_CRON_TOKEN (exactly 32 characters, which the cron service needs). All three are generated.
  #          APP_URL is your https address and TRUSTED_PROXIES is the proxy's fixed address: .env.example says APP_URL must match the external URL and that TRUSTED_PROXIES makes reverse proxies work (its example value ** trusts every address).
  #          The back-end network keeps internet access: the cron service runs "apk add tzdata" each time it starts.
  firefly-iii-app:
    image: "fireflyiii/core:latest"
    container_name: "firefly-iii-app"
    hostname: "app"
    restart: "always"
    volumes:
      - "firefly-iii-firefly_iii_upload:/var/www/html/storage/upload"
    environment:
      APP_KEY: "${FIREFLY_III_APP_KEY}"
      APP_URL: "https://money.example.org"
      TRUSTED_PROXIES: "172.30.0.2"
      TZ: "Etc/UTC"
      DB_CONNECTION: "mysql"
      DB_HOST: "db"
      DB_PORT: "3306"
      DB_DATABASE: "firefly"
      DB_USERNAME: "firefly"
      DB_PASSWORD: "${FIREFLY_III_DB_PASSWORD}"
      STATIC_CRON_TOKEN: "${FIREFLY_III_STATIC_CRON_TOKEN}"
    depends_on:
      - "firefly-iii-db"
    networks:
      proxy: {}
      firefly-iii-backend:
        aliases:
          - "app"
  firefly-iii-db:
    image: "mariadb:lts"
    container_name: "firefly-iii-db"
    hostname: "db"
    restart: "always"
    environment:
      MYSQL_RANDOM_ROOT_PASSWORD: "yes"
      MYSQL_USER: "firefly"
      MYSQL_PASSWORD: "${FIREFLY_III_DB_PASSWORD}"
      MYSQL_DATABASE: "firefly"
    volumes:
      - "firefly-iii-firefly_iii_db:/var/lib/mysql"
    networks:
      firefly-iii-backend:
        aliases:
          - "db"
  firefly-iii-cron:
    image: "alpine"
    container_name: "firefly-iii-cron"
    restart: "always"
    environment:
      TZ: "Etc/UTC"
      STATIC_CRON_TOKEN: "${FIREFLY_III_STATIC_CRON_TOKEN}"
    command:
      - "sh"
      - "-c"
      - "apk add tzdata && (ln -s /usr/share/zoneinfo/$$TZ /etc/localtime || true) && echo \"0 3 * * * wget -qO- http://app:8080/api/v1/cron/$$STATIC_CRON_TOKEN;echo\" | crontab - && crond -f -L /dev/stdout"
    depends_on:
      - "firefly-iii-app"
    networks:
      firefly-iii-backend:
        aliases:
          - "cron"

networks:
  # Pinned so the trusted-proxy address given to each app (172.30.0.2) is exact.
  # If "docker compose up" reports "Pool overlaps", change 172.30.0 here, in Caddy's
  # ipv4_address and in every trusted-proxy value to a free 172.x.0 range.
  proxy:
    ipam:
      config:
        - subnet: "172.30.0.0/24"
          ip_range: "172.30.0.128/25"
          gateway: "172.30.0.1"
  firefly-iii-backend: {}

volumes:
  caddy-data:
  caddy-config:
  firefly-iii-firefly_iii_upload:
  firefly-iii-firefly_iii_db:

Caddyfile save as caddy/Caddyfile

Caddy gets and renews the HTTPS certificate for money.example.org by itself once the DNS record points at your server and ports 80 and 443 reach it.

# Caddyfile built at dankhost.com. Save it as ./caddy/Caddyfile next to docker-compose.yml.
# Caddy gets and renews a Let's Encrypt certificate for each name below by itself,
# once the DNS records point at this server and ports 80 and 443 reach it.

# Firefly III
money.example.org {
	reverse_proxy firefly-iii-app:8080
}

.env

The secrets are left blank here on purpose: a password printed on a public page is the same for everyone who copies it. The builder fills them with random letters and digits made in your browser.

# .env for Firefly III, from dankhost.com/app/firefly-iii/. Fill the blank secrets before starting.
# Keep this file private (chmod 600).

# Firefly III
# 32 random letters and digits: the builder fills this in your browser
FIREFLY_III_APP_KEY=
# 32 random letters and digits: the builder fills this in your browser
FIREFLY_III_DB_PASSWORD=
# 32 random letters and digits: the builder fills this in your browser
FIREFLY_III_STATIC_CRON_TOKEN=

Changes from the official file

Besides prefixing every service, container, volume, folder and variable with firefly-iii (so any set of apps can share one file), these are all the differences from what the project documents:

Notes for Firefly III behind the proxy

How to run it

  1. At your DNS provider, add an A record named money on your domain pointing at the server's public IP address, and forward TCP 80, TCP 443 and UDP 443 to it.
  2. Save the three files in one folder: docker-compose.yml and .env side by side, the Caddyfile at ./caddy/Caddyfile. Replace example.org with your domain in the Caddyfile, the compose file and the .env, or let the builder do it.
  3. Fill the blank FIREFLY_III_APP_KEY, FIREFLY_III_DB_PASSWORD, FIREFLY_III_STATIC_CRON_TOKEN in .env. The builder generates them; on the server, tr -dc A-Za-z0-9 </dev/urandom | head -c 32 prints 32 random letters and digits. Then chmod 600 .env.
  4. Start it:
    docker compose up -d
    docker compose logs -f caddy   # watch the certificate arrive
  5. Open the new address (money. plus your domain) in a browser and follow the notes above.

Back it up

Firefly III's backup page for Docker: back up the variables (especially APP_KEY), the secrets, and "the two volumes used by Firefly III: upload and db". It copies the volumes with a throwaway container and tar, the method below uses for the upload volume; the database is dumped with mariadb-dump instead, so the copy is consistent without stopping MariaDB.

Below is the BACKUP.md the builder writes next to the compose file above: which of its folders and volumes hold data, the dump command the project documents, rewritten for this file's service names, what to copy with which container stopped, and a restore check. Pick more apps in the builder and it covers them all in one file.

# BACKUP.md built at dankhost.com for: Firefly III

What to copy from the docker-compose.yml built with this file, the database dump each project documents (rewritten for the service names in that file), what to copy with which container stopped, and how to check the result. Run every command in the folder that holds docker-compose.yml.

The folders are owned by the containers' users: put sudo in front of tar if it says "Permission denied". Named volumes live under /var/lib/docker/volumes, not next to the compose file, so they are copied through a throwaway ubuntu container (Docker's documented --volumes-from method). tar makes a full copy each run; for large folders an incremental tool (restic, borg, rsync) saves time and space.

Never run "docker compose down -v" on this file: it deletes the named volumes of every app in it.

## Before you start

    BACKUP=/mnt/backup/selfhost   # change this: a disk or machine other than this server's system disk
    mkdir -p "$BACKUP"

## Every time: the three stack files

    tar czf "$BACKUP/stack-files.tar.gz" docker-compose.yml .env caddy

.env holds the database passwords and secret keys the apps were set up with; keep this archive as private as the data.

## Caddy (the reverse proxy)

Caddy's docs: 'The data directory must not be treated as a cache.' It holds the TLS certificates and their private keys; without it Caddy has to ask Let's Encrypt for every certificate again.

- caddy-data (named volume, /data in caddy)
  BACK UP: TLS certificates, private keys, OCSP staples.
- caddy-config (named volume, /config in caddy)
  SKIP: the last active configuration, kept for 'caddy run --resume', which this setup does not use: it starts from the Caddyfile.
- ./caddy (/etc/caddy in caddy)
  IN stack-files.tar.gz: the Caddyfile, copied with the stack files above.

Copy (Caddy keeps serving while you copy):

    docker run --rm --volumes-from caddy -v "$BACKUP":/backup ubuntu tar cvf /backup/caddy-data.tar /data

Restore check:

    tar tf "$BACKUP/caddy-data.tar" > /dev/null && echo OK
    docker run --rm --volumes-from caddy -v "$BACKUP":/backup ubuntu bash -c "cd /data && tar xvf /backup/caddy-data.tar --strip 1"

Sources:
- Caddy docs: Conventions, Data directory: https://caddyserver.com/docs/conventions#data-directory (checked 2026-09-24)
- Docker docs: Volumes, Back up, restore, or migrate data volumes: https://docs.docker.com/engine/storage/volumes/#back-up-restore-or-migrate-data-volumes (checked 2026-09-24)

## Firefly III

Firefly III's backup page for Docker: back up the variables (especially APP_KEY), the secrets, and "the two volumes used by Firefly III: upload and db". It copies the volumes with a throwaway container and tar, the method below uses for the upload volume; the database is dumped with mariadb-dump instead, so the copy is consistent without stopping MariaDB.

What this compose mounts:
- firefly-iii-firefly_iii_upload (named volume, /var/www/html/storage/upload in firefly-iii-app)
  BACK UP: attachments uploaded to transactions.
- firefly-iii-firefly_iii_db (named volume, /var/lib/mysql in firefly-iii-db)
  COVERED BY THE COMMAND BELOW: the MariaDB data files: every account, transaction, budget and rule; copy them only with the database stopped.

1. Stop firefly-iii-app. Stopping Firefly III (not MariaDB) keeps new transactions and attachments from arriving between the dump and the copy.

    docker compose stop firefly-iii-app

2. Database dump for firefly-iii-db:

    docker compose exec -T firefly-iii-db sh -c 'mariadb-dump -u "$MYSQL_USER" -p"$MYSQL_PASSWORD" "$MYSQL_DATABASE"' > "$BACKUP/firefly.sql"

   The backup page copies the db volume itself with a throwaway container; copied while MariaDB runs, those files can be inconsistent. mariadb-dump (MariaDB's name for mysqldump) writes a consistent copy of the firefly database from inside the running container, which already has the user, password and database name in its environment.

3. Copy while firefly-iii-app is stopped:

    docker run --rm --volumes-from firefly-iii-app -v "$BACKUP":/backup ubuntu tar cvf /backup/firefly-iii-firefly_iii_upload.tar /var/www/html/storage/upload

4. Start it again:

    docker compose start firefly-iii-app

Restore check:

    grep -c 'Dump completed' "$BACKUP/firefly.sql"   # 1 means mariadb-dump finished
    tar tf "$BACKUP/firefly-iii-firefly_iii_upload.tar" > /dev/null && echo OK

Put a copy back (with firefly-iii-app stopped):

    docker run --rm --volumes-from firefly-iii-app -v "$BACKUP":/backup ubuntu bash -c "cd /var/www/html/storage/upload && tar xvf /backup/firefly-iii-firefly_iii_upload.tar --strip 5"

The backup page's rule: after making a backup, the first thing to do is restore it to make sure it worked. With this file's names:

    docker compose up -d firefly-iii-db
    docker compose exec -T firefly-iii-db sh -c 'mariadb -u "$MYSQL_USER" -p"$MYSQL_PASSWORD" "$MYSQL_DATABASE"' < "$BACKUP/firefly.sql"
    docker compose up -d

Sources:
- Firefly III docs: How to make a backup (source of docs.firefly-iii.org): https://github.com/firefly-iii/docs/blob/main/docs/docs/how-to/firefly-iii/advanced/backup.md (checked 2026-09-26)
- MariaDB docs: mariadb-dump (formerly mysqldump): https://mariadb.com/docs/server/clients-and-utilities/backup-restore-and-import-clients/mariadb-dump (checked 2026-09-26)
- Docker docs: Volumes, Back up, restore, or migrate data volumes: https://docs.docker.com/engine/storage/volumes/#back-up-restore-or-migrate-data-volumes (checked 2026-09-26)

Sources

Every page below was fetched on the date shown.

Add Firefly III to the builder All forty apps