This commit is contained in:
2026-06-25 12:05:53 -05:00
commit b58e50e423
141 changed files with 28190 additions and 0 deletions

24
docker-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
services:
poshmanager:
build: .
ports:
- "3000:3000"
environment:
NODE_ENV: production
PORT: 5174
SERVER_FQDN: http://localhost:3000
CLIENT_ORIGIN: http://localhost:3000
CLIENT_ORIGINS: http://localhost:3000,http://127.0.0.1:3000
API_PROXY_TARGET: http://127.0.0.1:5174
DATABASE_PATH: /app/data/poshmanager.sqlite
LOG_DIR: /app/data/logs
JWT_SECRET: change-this-jwt-secret
CREDENTIAL_STORE_KEY: change-this-credential-key
DEFAULT_ADMIN_EMAIL: admin@posh.local
DEFAULT_ADMIN_PASSWORD: change-me-now
ALLOW_SCRIPT_EXECUTION: "true"
volumes:
- poshmanager-data:/app/data
volumes:
poshmanager-data: