Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions templates/compose/stacy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# documentation: https://actualbudget.org/docs/install/docker
# slogan: A local-first personal finance app.
# category: finance
# tags: budgeting,actual,finance,budget,money,expenses,income
# logo: svgs/actualbudget.png
# port: 5006

services:
actual_server:
image: actualbudget/actual-server:latest

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please pin this image to a specific version. actualbudget/actual-server:latest uses a floating tag, which might break our template if upstream image have breaking changes. Use a fixed version tag (image:1.2.3) or a digest (image@sha256:…).

environment:
- SERVICE_FQDN_ACTUAL_5006
Comment thread
shadowreviewer[bot] marked this conversation as resolved.
- ACTUAL_LOGIN_METHOD=password
volumes:
- actual_data:/datas
healthcheck:
test: ["CMD-SHELL", "bash -c ':> /dev/tcp/127.0.0.1/5006' || exit 1"]
interval: 5s
timeout: 20s
retries: 3