Chris4K commited on
Commit
d321dba
·
verified ·
1 Parent(s): c65f9b7

Update docker-compose.yml

Browse files
Files changed (1) hide show
  1. docker-compose.yml +2 -2
docker-compose.yml CHANGED
@@ -6,8 +6,8 @@ services:
6
  - 3000:3000
7
  environment:
8
  - DATABASE_URL=postgresql://postgres:postgres@db:5432/langfuse
9
- - NEXTAUTH_SECRET=your_generated_secret
10
- - SALT=your_generated_salt
11
  depends_on:
12
  - db
13
 
 
6
  - 3000:3000
7
  environment:
8
  - DATABASE_URL=postgresql://postgres:postgres@db:5432/langfuse
9
+ - NEXTAUTH_SECRET=$(openssl rand -base64 32)
10
+ - SALT=$(openssl rand -base64 32)
11
  depends_on:
12
  - db
13