Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add actual-budget and rallly service #4640

Merged
merged 2 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
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
Binary file added public/svgs/actualbudget.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/svgs/rallly.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions templates/compose/actualbudget.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.
# 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
47 changes: 47 additions & 0 deletions templates/compose/rallly.yaml
Original file line number Diff line number Diff line change
@@ -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
Loading