Chris4K commited on
Commit
b9f6403
·
verified ·
1 Parent(s): aff5869

Update docker-compose.yml

Browse files
Files changed (1) hide show
  1. docker-compose.yml +0 -23
docker-compose.yml CHANGED
@@ -1,23 +0,0 @@
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=secret
10
- - SALT=$(openssl rand -base64 32)
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: