Skip to content
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
32 changes: 32 additions & 0 deletions blueprints/yuvomi/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
services:
yuvomi:
image: ghcr.io/ulsklyc/yuvomi:1.85.0
restart: unless-stopped
environment:
NODE_ENV: production
DB_PATH: /data/yuvomi.db
BACKUP_DIR: /backups
DOCUMENT_STORAGE_LOCAL_ENABLED: ${DOCUMENT_STORAGE_LOCAL_ENABLED}
DOCUMENT_STORAGE_LOCAL_PATH: /documents
SESSION_SECURE: "true"
TRUST_PROXY: "1"
SESSION_SECRET: ${SESSION_SECRET}
volumes:
- yuvomi-data:/data
- yuvomi-backups:/backups
- yuvomi-modules:/app/modules
- yuvomi-documents:/documents
expose:
- 3000
healthcheck:
test: ["CMD", "node", "-e", "require('http').get('http://localhost:3000/health', r => process.exit(r.statusCode === 200 ? 0 : 1))"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s

volumes:
yuvomi-data:
yuvomi-backups:
yuvomi-modules:
yuvomi-documents:
19 changes: 19 additions & 0 deletions blueprints/yuvomi/meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"id": "yuvomi",
"name": "Yuvomi",
"version": "1.85.0",
"description": "Privacy-first, self-hosted family planner. Tasks, shopping, meals, calendar sync, budget — one private home for everything your household runs on. No cloud, no subscriptions.",
"logo": "yuvomi.svg",
"links": {
"github": "https://github.com/ulsklyc/yuvomi",
"website": "https://yuvomi.cloud/",
"docs": "https://github.com/ulsklyc/yuvomi#readme"
},
"tags": [
"open-source",
"family",
"productivity",
"calendar",
"tasks"
]
}
17 changes: 17 additions & 0 deletions blueprints/yuvomi/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[variables]
main_domain = "${domain}"
session_secret = "${password:64}"

[config]
mounts = []

[[config.domains]]
serviceName = "yuvomi"
port = 3000
host = "${main_domain}"

[config.env]
SESSION_SECRET = "${session_secret}"
SESSION_SECURE = "true"
TRUST_PROXY = "1"
DOCUMENT_STORAGE_LOCAL_ENABLED = "false"
20 changes: 20 additions & 0 deletions blueprints/yuvomi/yuvomi.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading