Merge pull request #4640 from frenicohansen/feat/actualbudget-rallly

Add actual-budget and rallly service
This commit is contained in:
🏔️ Peak
2025-01-14 13:23:31 +01:00
committed by GitHub
4 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# documentation: https://actualbudget.org/docs/install/docker
# slogan: A local-first personal finance app.
# tags: budgeting,actual,finance,budget,money,expenses,income
# logo: svgs/actualbudget.png
# port: 5006
services:
actual_server:
image: "docker.io/actualbudget/actual-server:latest"
restart: unless-stopped
environment:
- SERVICE_FQDN_ACTUAL_5006
- ACTUAL_LOGIN_METHOD=password
volumes:
- "actual-data:/data"
healthcheck:
test: ["CMD", "echo", "ok"]
interval: 5s
timeout: 20s
retries: 10

View File

@@ -0,0 +1,47 @@
# documentation: https://support.rallly.co/self-hosting/introduction
# slogan: Rallly is an open-source scheduling and collaboration tool designed to make organizing events and meetings easier.
# tags: scheduling,rallly,events,meeting,doodle
# logo: svgs/rallly.svg
# port: 3000
services:
rallly_db:
image: "postgres:14.2"
restart: always
volumes:
- "db-data:/var/lib/postgresql/data"
environment:
- "POSTGRES_PASSWORD=${SERVICE_PASSWORD_POSTGRES}"
- "POSTGRES_USER=${SERVICE_USER_POSTGRES}"
- "POSTGRES_DB=${POSTGRES_DB:-rallly}"
healthcheck:
test:
- CMD-SHELL
- "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"
interval: 2s
timeout: 10s
retries: 15
rallly:
image: "lukevella/rallly:latest"
restart: always
depends_on:
rallly_db:
condition: service_healthy
environment:
- SERVICE_FQDN_RALLLY_3000
- "DATABASE_URL=postgres://${SERVICE_USER_POSTGRES}:${SERVICE_PASSWORD_POSTGRES}@rallly_db:5432/${POSTGRES_DB:-rallly}"
- "SECRET_PASSWORD=${SERVICE_BASE64_32_RALLLY}"
- "NEXT_PUBLIC_BASE_URL=https://${SERVICE_URL_RALLLY}"
- "ALLOWED_EMAILS=${ALLOWED_EMAILS}"
- "SUPPORT_EMAIL=${SUPPORT_EMAIL}"
- "SMTP_HOST=${SMTP_HOST}"
- "SMTP_PORT=${SMTP_PORT}"
- "SMTP_SECURE=${SMTP_SECURE}"
- "SMTP_USER=${SMTP_USER}"
- "SMTP_PWD=${SMTP_PWD}"
- "SMTP_TLS_ENABLED=${SMTP_TLS_ENABLED}"
healthcheck:
test: ["CMD", "echo", "ok"]
interval: 5s
timeout: 20s
retries: 10