mirror of
https://github.com/evgen-app/evg-app-back.git
synced 2024-11-10 19:26:33 +03:00
20 lines
382 B
YAML
20 lines
382 B
YAML
|
version: "3.9"
|
||
|
|
||
|
services:
|
||
|
db:
|
||
|
image: postgres
|
||
|
volumes:
|
||
|
- ./data/db:/var/lib/postgresql/data
|
||
|
environment:
|
||
|
- POSTGRES_DB=postgres
|
||
|
- POSTGRES_USER=postgres
|
||
|
- POSTGRES_PASSWORD=postgres
|
||
|
web:
|
||
|
build: .
|
||
|
command: python manage.py runserver 0.0.0.0:8000
|
||
|
volumes:
|
||
|
- .:/code
|
||
|
ports:
|
||
|
- "8000:8000"
|
||
|
depends_on:
|
||
|
- db
|