refactor: rebrand from Secure Portal to SafeDocs Portal

Update all container names and image references:
- secure-portal-* → safedocs-portal-*
- Docker images now use safedocs-portal-backend/frontend
- MAIL_FROM_NAME default updated to "SafeDocs Portal"

This aligns with the complete rebranding of the product.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-28 23:22:29 +01:00
parent 9da5b54187
commit a7f9a51de4

View File

@@ -1,4 +1,4 @@
# Secure Portal - Production Docker Compose # SafeDocs Portal - Production Docker Compose
# Pull with: docker compose pull # Pull with: docker compose pull
# Start with: docker compose up -d # Start with: docker compose up -d
@@ -6,7 +6,7 @@ services:
# PostgreSQL Database # PostgreSQL Database
postgres: postgres:
image: postgres:16-alpine image: postgres:16-alpine
container_name: secure-portal-db container_name: safedocs-portal-db
restart: unless-stopped restart: unless-stopped
environment: environment:
POSTGRES_USER: ${POSTGRES_USER} POSTGRES_USER: ${POSTGRES_USER}
@@ -23,7 +23,7 @@ services:
# Redis Cache # Redis Cache
redis: redis:
image: redis:7-alpine image: redis:7-alpine
container_name: secure-portal-redis container_name: safedocs-portal-redis
restart: unless-stopped restart: unless-stopped
command: redis-server --appendonly yes --requirepass ${REDIS_PASSWORD} command: redis-server --appendonly yes --requirepass ${REDIS_PASSWORD}
volumes: volumes:
@@ -36,8 +36,8 @@ services:
# Backend API # Backend API
backend: backend:
image: git.unixweb.net/unixweb/secure-portal-backend:latest image: git.unixweb.net/unixweb/safedocs-portal-backend:latest
container_name: secure-portal-backend container_name: safedocs-portal-backend
restart: unless-stopped restart: unless-stopped
ports: ports:
- "3000:3000" - "3000:3000"
@@ -54,7 +54,7 @@ services:
PASSWORD_RESET_URL: ${PASSWORD_RESET_URL} PASSWORD_RESET_URL: ${PASSWORD_RESET_URL}
MAIL_PROVIDER: ${MAIL_PROVIDER:-brevo} MAIL_PROVIDER: ${MAIL_PROVIDER:-brevo}
MAIL_FROM_EMAIL: ${MAIL_FROM_EMAIL} MAIL_FROM_EMAIL: ${MAIL_FROM_EMAIL}
MAIL_FROM_NAME: ${MAIL_FROM_NAME:-Secure Portal} MAIL_FROM_NAME: ${MAIL_FROM_NAME:-SafeDocs Portal}
BREVO_API_KEY: ${BREVO_API_KEY} BREVO_API_KEY: ${BREVO_API_KEY}
ENCRYPTION_KEY: ${ENCRYPTION_KEY} ENCRYPTION_KEY: ${ENCRYPTION_KEY}
CORS_ORIGIN: ${CORS_ORIGIN} CORS_ORIGIN: ${CORS_ORIGIN}
@@ -83,8 +83,8 @@ services:
# Frontend (Nginx) # Frontend (Nginx)
frontend: frontend:
image: git.unixweb.net/unixweb/secure-portal-frontend:latest image: git.unixweb.net/unixweb/safedocs-portal-frontend:latest
container_name: secure-portal-frontend container_name: safedocs-portal-frontend
restart: unless-stopped restart: unless-stopped
ports: ports:
- "80:80" - "80:80"
@@ -96,7 +96,7 @@ services:
# ClamAV Virus Scanner # ClamAV Virus Scanner
clamav: clamav:
image: clamav/clamav:latest image: clamav/clamav:latest
container_name: secure-portal-clamav container_name: safedocs-portal-clamav
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- clamav_data:/var/lib/clamav - clamav_data:/var/lib/clamav