mirror of
https://github.com/runyanjake/olomana.git
synced 2025-10-04 21:27:29 -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
|
timedatectl list-timezones
|
||||||
sudo timedatectl set-timezone America/Los_Angeles
|
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
|
use_x_forwarded_for: true
|
||||||
trusted_proxies:
|
trusted_proxies:
|
||||||
- 192.168.96.2
|
- 192.168.96.2
|
||||||
- 172.18.0.2
|
- 172.18.0.13
|
||||||
|
|
||||||
# Configure logging
|
# Configure logging
|
||||||
logger:
|
logger:
|
||||||
|
@ -25,7 +25,7 @@ Copy `planka.env.example` to `planka.env`, and `planka-db.env.example` to `plank
|
|||||||
docker compose up -d postgres
|
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
|
docker compose run --rm planka npm run db:create-admin-user
|
||||||
```
|
```
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
# Planka Env Vars
|
# Planka Env Vars
|
||||||
BASE_URL=https://subdomain.example.com
|
BASE_URL=https://planka.example.com
|
||||||
DATABASE_URL=postgresql://postgres@postgres/planka
|
DATABASE_URL=postgresql://postgres@postgres/planka
|
||||||
SECRET_KEY=notsecretkey
|
SECRET_KEY=your_secret_key
|
||||||
LOG_LEVEL=warn
|
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
|
# List of container paths to start
|
||||||
declare -a CONTAINERS=(
|
declare -a CONTAINERS=(
|
||||||
"ai/openwebui"
|
|
||||||
"home/homeassistant"
|
"home/homeassistant"
|
||||||
"media/immich"
|
"media/immich"
|
||||||
"media/plex"
|
"media/plex"
|
||||||
"media/transmission"
|
"media/transmission"
|
||||||
"misc/homepage"
|
"misc/homepage"
|
||||||
"productivity/code-server"
|
"productivity/code-server"
|
||||||
|
"productivity/planka"
|
||||||
|
"software/workflow/n8n"
|
||||||
|
"software-development/gitea"
|
||||||
"software-development/grafana"
|
"software-development/grafana"
|
||||||
"software-development/traefik"
|
"software-development/traefik"
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user