Initial commit (with migration template)

This commit is contained in:
JK Woo
2026-07-17 15:37:40 +00:00
commit 6cfbe6dcb5
63 changed files with 4992 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
version: '3.8'
services:
litellm-db:
image: postgres:16-alpine
container_name: litellm-db
environment:
POSTGRES_DB: ${POSTGRES_DB}
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
volumes:
- pgdata:/var/lib/postgresql/data
ports:
- "5432:5432"
restart: always
volumes:
pgdata: