mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
feat(template): added Actual Budget, a super fast and privacy-focused app for managing your finances (#1080)
Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
This commit is contained in:
BIN
apps/dokploy/public/templates/actualbudget.png
Normal file
BIN
apps/dokploy/public/templates/actualbudget.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.5 KiB |
12
apps/dokploy/templates/actualbudget/docker-compose.yml
Normal file
12
apps/dokploy/templates/actualbudget/docker-compose.yml
Normal file
@@ -0,0 +1,12 @@
|
||||
services:
|
||||
actualbudget:
|
||||
image: docker.io/actualbudget/actual-server:latest
|
||||
environment:
|
||||
# See all options at https://actualbudget.org/docs/config
|
||||
- ACTUAL_PORT=5006
|
||||
volumes:
|
||||
- actual-data:/data
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
actual-data:
|
||||
20
apps/dokploy/templates/actualbudget/index.ts
Normal file
20
apps/dokploy/templates/actualbudget/index.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import {
|
||||
type DomainSchema,
|
||||
type Schema,
|
||||
type Template,
|
||||
generateRandomDomain,
|
||||
} from "../utils";
|
||||
|
||||
export function generate(schema: Schema): Template {
|
||||
const domains: DomainSchema[] = [
|
||||
{
|
||||
host: generateRandomDomain(schema),
|
||||
port: 5006,
|
||||
serviceName: "actualbudget",
|
||||
},
|
||||
];
|
||||
|
||||
return {
|
||||
domains,
|
||||
};
|
||||
}
|
||||
@@ -1209,6 +1209,21 @@ export const templates: TemplateData[] = [
|
||||
tags: ["api", "backend", "pdf", "tools"],
|
||||
load: () => import("./gotenberg/index").then((m) => m.generate),
|
||||
},
|
||||
{
|
||||
id: "actualbudget",
|
||||
name: "Actual Budget",
|
||||
version: "latest",
|
||||
description:
|
||||
"A super fast and privacy-focused app for managing your finances.",
|
||||
logo: "actualbudget.png",
|
||||
links: {
|
||||
github: "https://github.com/actualbudget/actual",
|
||||
website: "https://actualbudget.org",
|
||||
docs: "https://actualbudget.org/docs",
|
||||
},
|
||||
tags: ["budgeting", "finance", "money"],
|
||||
load: () => import("./actualbudget/index").then((m) => m.generate),
|
||||
},
|
||||
{
|
||||
id: "conduit",
|
||||
name: "Conduit",
|
||||
|
||||
Reference in New Issue
Block a user