homelab / docker-compose.yml
nj9997
v1.1.3
5cc12e2
Raw
History Blame Contribute Delete
527 Bytes
services:
db:
image: postgres:16
environment:
POSTGRES_USER: openf1
POSTGRES_PASSWORD: openf1
POSTGRES_DB: openf1
ports:
- "5432:5432"
volumes:
- db_data:/var/lib/postgresql/data
api:
build: .
environment:
DATABASE_URL: postgresql+psycopg://postgres:<ypX6nTvk3DdtoYko>@db.mcfnkdioseovayxpioaa.supabase.co:5432/postgres?sslmode=require
OPENF1_BASE_URL: https://api.openf1.org/v1
ports:
- "7860:7860"
depends_on:
- db
volumes:
db_data: