mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-11 04:17:41 +02:00
25 lines
531 B
YAML
25 lines
531 B
YAML
version: '3'
|
|
|
|
services:
|
|
db:
|
|
image: "postgres:12.2"
|
|
environment:
|
|
- POSTGRES_DB=postgres
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=postgres
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data/
|
|
web:
|
|
build: .
|
|
command: python3 manage.py runserver 0.0.0.0:8000
|
|
volumes:
|
|
- .:/app
|
|
ports:
|
|
- "8000:8000"
|
|
depends_on:
|
|
- db
|
|
volumes:
|
|
postgres_data:
|