network_inventory/docker-compose-development.yml

38 lines
608 B
YAML
Raw Normal View History

2021-01-26 22:16:49 +01:00
version: "3"
volumes:
db_data:
services:
db:
image: postgres
environment:
- POSTGRES_DB
- POSTGRES_PASSWORD
volumes:
- db_data:/var/lib/postgresql/data/
2020-11-27 23:27:04 +01:00
backend:
2020-11-28 16:12:06 +01:00
build: backend/.
volumes:
2020-11-28 16:12:06 +01:00
- ./backend:/code
environment:
- DJANGO_SETTINGS_MODULE
- DJANGO_DEBUG
- DJANGO_SECRET_KEY
depends_on:
- db
2021-01-25 19:56:34 +01:00
ports:
- 8000:8000
2020-11-27 23:27:04 +01:00
frontend:
2020-12-07 19:58:09 +01:00
build:
context: frontend/.
dockerfile: Dockerfile-dev
2020-11-27 23:27:04 +01:00
depends_on:
- backend
ports:
2021-01-26 22:16:49 +01:00
- 8080:8080
volumes:
2020-12-07 19:58:09 +01:00
- ./frontend:/usr/src/app/frontend