This commit is contained in:
Melissa Tamplin 2024-05-01 10:47:24 +05:30 committed by GitHub
commit 0285e2b3b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@ -0,0 +1,16 @@
version: "3.6"
services:
jackson:
build: .
ports:
- "5225:5225"
command: [ "node", "server.js" ]
environment:
DB_ENGINE: "sql"
DB_TYPE: "postgres"
DB_URL: "postgres://postgres:postgres@postgres:5432/postgres"
JACKSON_API_KEYS: "secret"
NEXTAUTH_URL: "http://localhost:5225"
EXTERNAL_URL: "http://localhost:5225"
NEXTAUTH_SECRET: "super-secret"
NEXTAUTH_ADMIN_CREDENTIALS: "admin@company.com:secretpassword"