mirror of
https://github.com/runyanjake/olomana.git
synced 2025-10-04 13:27:28 -07:00
Update planka, repo documentation, and homeassistant config
This commit is contained in:
parent
dd70ad3dbd
commit
5e5af0dcec
14
README.md
14
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 <pool_name>
|
||||
```
|
||||
|
||||
### ZFS Fix for DEGRADED/FAULTED State
|
||||
```
|
||||
zpool scrub <pool_name>
|
||||
zpool status <pool_name>
|
||||
```
|
||||
|
@ -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:
|
||||
|
@ -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
|
||||
```
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user