Chris4K commited on
Commit
f343b0b
·
verified ·
1 Parent(s): d9ae4ea

Create docker-compose.yml

Browse files
Files changed (1) hide show
  1. docker-compose.yml +23 -0
docker-compose.yml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: '3.8'
2
+ services:
3
+ langfuse-server:
4
+ image: langfuse/langfuse:latest
5
+ ports:
6
+ - 3000:3000
7
+ environment:
8
+ - DATABASE_URL=postgresql://postgres:postgres@db:5432/langfuse
9
+ - NEXTAUTH_SECRET=your_nextauth_secret
10
+ - SALT=your_salt
11
+ depends_on:
12
+ - db
13
+
14
+ db:
15
+ image: postgres:15
16
+ environment:
17
+ - POSTGRES_DB=langfuse
18
+ - POSTGRES_PASSWORD=postgres
19
+ volumes:
20
+ - postgres-data:/var/lib/postgresql/data
21
+
22
+ volumes:
23
+ postgres-data: