mirror of
https://github.com/testdrivenio/fastapi-sqlmodel-alembic.git
synced 2025-08-06 15:00:00 +08:00
25 lines
490 B
YAML
25 lines
490 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
|
|
web:
|
|
build: ./project
|
|
command: uvicorn app.main:app --reload --workers 1 --host 0.0.0.0 --port 8000
|
|
volumes:
|
|
- ./project:/usr/src/app
|
|
ports:
|
|
- 8004:8000
|
|
environment:
|
|
- DATABASE_URL=postgresql+asyncpg://postgres:postgres@db:5432/foo
|
|
depends_on:
|
|
- db
|
|
|
|
db:
|
|
image: postgres:15.3
|
|
expose:
|
|
- 5432
|
|
environment:
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=postgres
|
|
- POSTGRES_DB=foo
|