From a4c624802b2926a16adcf0472a3041562f9b2f48 Mon Sep 17 00:00:00 2001 From: Paul Nothaft Date: Sat, 21 Feb 2026 08:28:49 +0100 Subject: [PATCH] fix: update docker-compose to docker compose and add ADMIN_PASSWORD to .env.example (#189) - Replace deprecated docker-compose (v1) with docker compose (v2) in README - Add missing ADMIN_PASSWORD to .env.example so new users don't get a blank-string warning and can actually log in after first setup --- .env.example | 1 + README.md | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index e4b61749..9fd62522 100644 --- a/.env.example +++ b/.env.example @@ -22,6 +22,7 @@ REDIS_PASSWORD=your_secure_redis_password_here # Admin Account (initial setup) ADMIN_USERNAME=admin ADMIN_EMAIL=admin@yourdomain.com +ADMIN_PASSWORD=your_secure_admin_password_here # Email Configuration # For Gmail: use app-specific password diff --git a/README.md b/README.md index 31323977..339197c2 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ cp .env.example .env nano .env # Start with Docker Compose -docker-compose up -d +docker compose up -d # Access at http://localhost:3005 ``` @@ -128,8 +128,8 @@ PICPEAK_CHANNEL=v2.3.0 Then update your containers: ```bash -docker-compose -f docker-compose.production.yml pull -docker-compose -f docker-compose.production.yml up -d +docker compose -f docker-compose.production.yml pull +docker compose -f docker-compose.production.yml up -d ``` ### Update Notifications