19 lines
327 B
YAML
Executable File
19 lines
327 B
YAML
Executable File
# docker-compose.yml
|
|
version: "3"
|
|
services:
|
|
app:
|
|
build: .
|
|
depends_on:
|
|
- postgres
|
|
ports:
|
|
- "8000:8000"
|
|
- "9229:9229"
|
|
|
|
postgres:
|
|
image: postgres:12.0-alpine
|
|
environment:
|
|
POSTGRES_USER: savvy
|
|
POSTGRES_PASSWORD: savvy001!
|
|
POSTGRES_DB: savvy
|
|
ports:
|
|
- "5433:5432" |