Merge pull request #190 from the-luap/feat/new-features

fix: docker compose v2 syntax and add missing ADMIN_PASSWORD to .env.example (#189)
This commit is contained in:
Paul Nothaft
2026-02-21 20:31:20 +01:00
committed by GitHub
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -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
+3 -3
View File
@@ -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