From c1865a85e6bec22914dd9e0603b6fd371953554f Mon Sep 17 00:00:00 2001 From: Luis Herr Date: Mon, 22 Dec 2025 18:22:18 +0100 Subject: [PATCH 1/2] fix(psono): added missing container name to commands --- docs/B._Installation/30_backup.md | 3 ++- docs/C._Services/psono.md | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/B._Installation/30_backup.md b/docs/B._Installation/30_backup.md index a430223..a92a3f7 100644 --- a/docs/B._Installation/30_backup.md +++ b/docs/B._Installation/30_backup.md @@ -71,4 +71,5 @@ done ```shell sudo -s BORG_PASSPHRASE=s3cr3t-s3cur3-p4ssw0rd bash backup.sh -``` \ No newline at end of file +``` + diff --git a/docs/C._Services/psono.md b/docs/C._Services/psono.md index 72515b8..4443015 100644 --- a/docs/C._Services/psono.md +++ b/docs/C._Services/psono.md @@ -232,7 +232,7 @@ Domains so ohne Probleme verwendet werden und jederzeit auch noch später angepa ### User erstellen ```shell -docker compose exec python3 ./psono/manage.py createuser \ +docker compose exec psono-combo python3 ./psono/manage.py createuser \ username@example.com \ myPassword \ email@something.com @@ -243,7 +243,7 @@ Jetzt kann der User sich unter https://psono.domain.de/ einloggen. ### User zum Admin erklären ```shell -docker compose exec python3 ./psono/manage.py promoteuser username@example.com superuser +docker compose exec psono-combo python3 ./psono/manage.py promoteuser username@example.com superuser ``` Der Admin Login (mit einem Dashboard, Userverwaltung, etc.) befindet sich unter https://psono.domain.de/portal/ From 4754aa47a883867d9041ec386e5124aadb8bf133 Mon Sep 17 00:00:00 2001 From: Luis Herr Date: Mon, 22 Dec 2025 19:27:37 +0100 Subject: [PATCH 2/2] fix(psono): updated postgres version --- docs/C._Services/psono.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/C._Services/psono.md b/docs/C._Services/psono.md index 4443015..ea8cbb0 100644 --- a/docs/C._Services/psono.md +++ b/docs/C._Services/psono.md @@ -14,7 +14,7 @@ aufzusetzen und zu konfigurieren. services: postgres: restart: always - image: postgres:13-alpine + image: postgres:18-alpine env_file: .postgres.env environment: POSTGRES_USER: psono