From 5e5af0dcecb3377c31e8c97cab56c04f832778f6 Mon Sep 17 00:00:00 2001 From: whitney Date: Wed, 10 Sep 2025 00:17:42 -0700 Subject: [PATCH] Update planka, repo documentation, and homeassistant config --- README.md | 14 ++++++++++++++ home/homeassistant/configuration.yaml | 2 +- productivity/planka/README.md | 2 +- productivity/planka/planka.env.example | 8 ++++++-- start-all-containers.sh | 4 +++- 5 files changed, 25 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3c311c7..4b88cad 100644 --- a/README.md +++ b/README.md @@ -154,3 +154,17 @@ sudo systemctl is-active docker timedatectl list-timezones sudo timedatectl set-timezone America/Los_Angeles ``` + +## Health / Stability + +### ZFS Healthcheck +``` +zpool list +zpool status +``` + +### ZFS Fix for DEGRADED/FAULTED State +``` +zpool scrub +zpool status +``` diff --git a/home/homeassistant/configuration.yaml b/home/homeassistant/configuration.yaml index a2ac2af..c9c631f 100644 --- a/home/homeassistant/configuration.yaml +++ b/home/homeassistant/configuration.yaml @@ -11,7 +11,7 @@ http: use_x_forwarded_for: true trusted_proxies: - 192.168.96.2 - - 172.18.0.2 + - 172.18.0.13 # Configure logging logger: diff --git a/productivity/planka/README.md b/productivity/planka/README.md index b074ed3..d74610d 100644 --- a/productivity/planka/README.md +++ b/productivity/planka/README.md @@ -25,7 +25,7 @@ Copy `planka.env.example` to `planka.env`, and `planka-db.env.example` to `plank docker compose up -d postgres ``` -5. Create Admin User +5. Create Admin User (For some reason this is not working from the UI) ``` docker compose run --rm planka npm run db:create-admin-user ``` diff --git a/productivity/planka/planka.env.example b/productivity/planka/planka.env.example index 34274ef..8ac684c 100644 --- a/productivity/planka/planka.env.example +++ b/productivity/planka/planka.env.example @@ -1,5 +1,9 @@ # Planka Env Vars -BASE_URL=https://subdomain.example.com +BASE_URL=https://planka.example.com DATABASE_URL=postgresql://postgres@postgres/planka -SECRET_KEY=notsecretkey +SECRET_KEY=your_secret_key LOG_LEVEL=warn +DEFAULT_ADMIN_EMAIL=example@gmail.com +DEFAULT_ADMIN_PASSWORD=password +DEFAULT_ADMIN_NAME=Admin +DEFAULT_ADMIN_USERNAME=admin diff --git a/start-all-containers.sh b/start-all-containers.sh index 3d26e93..4a09684 100755 --- a/start-all-containers.sh +++ b/start-all-containers.sh @@ -2,13 +2,15 @@ # List of container paths to start declare -a CONTAINERS=( - "ai/openwebui" "home/homeassistant" "media/immich" "media/plex" "media/transmission" "misc/homepage" "productivity/code-server" + "productivity/planka" + "software/workflow/n8n" + "software-development/gitea" "software-development/grafana" "software-development/traefik" )