2021-02-27 20:07:48 +00:00
|
|
|
version: '3.7'
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
backend:
|
2021-12-13 19:44:09 +00:00
|
|
|
image: data_coop_membersystem:dev
|
2021-02-27 20:07:48 +00:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
command: python /app/src/manage.py runserver 0.0.0.0:8000
|
|
|
|
tty: true
|
|
|
|
ports:
|
|
|
|
- "8000:8000"
|
|
|
|
volumes:
|
|
|
|
- ./:/app/
|
2021-12-13 19:44:09 +00:00
|
|
|
depends_on:
|
2021-02-27 20:07:48 +00:00
|
|
|
- postgres
|
|
|
|
env_file:
|
2023-10-02 18:10:24 +00:00
|
|
|
- .env
|
2021-02-27 20:07:48 +00:00
|
|
|
|
|
|
|
postgres:
|
|
|
|
image: postgres:13-alpine
|
|
|
|
volumes:
|
|
|
|
- postgres_data:/var/lib/postgresql/data/
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
env_file:
|
2023-10-02 18:10:24 +00:00
|
|
|
- .env
|
2021-02-27 20:07:48 +00:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
postgres_data:
|