backend/docker-compose.yml

26 lines
492 B
YAML
Raw Normal View History

2022-10-09 07:43:08 +03:00
version: "3.9"
services:
db:
image: postgres
volumes:
- ./data/db:/var/lib/postgresql/data
environment:
- POSTGRES_DB=moretech
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=debug
web:
build: .
command: python manage.py runserver 0.0.0.0:8000
volumes:
- .:/code
ports:
- "8000:8000"
environment:
- POSTGRES_NAME=postgres
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
depends_on:
- db