Update planka, repo documentation, and homeassistant config

This commit is contained in:
whitney 2025-09-10 00:17:42 -07:00
parent dd70ad3dbd
commit 5e5af0dcec
5 changed files with 25 additions and 5 deletions

View File

@ -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 <pool_name>
```
### ZFS Fix for DEGRADED/FAULTED State
```
zpool scrub <pool_name>
zpool status <pool_name>
```

View File

@ -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:

View File

@ -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
```

View File

@ -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

View File

@ -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"
)