remove the outdated docker-compose file

I will add a correct production ready file at a later point
This commit is contained in:
Andreas Zweili 2020-11-28 16:14:08 +01:00
parent 069d0d50ca
commit 7faa31d952
1 changed files with 0 additions and 28 deletions

View File

@ -1,28 +0,0 @@
version: '3'
services:
db:
image: postgres
environment:
- POSTGRES_DB
- POSTGRES_PASSWORD
volumes:
- ./db_data:/var/lib/postgresql/data/
backend:
image: nebucatnetzer/network_inventory
volumes:
- .:/code
environment:
- DJANGO_SETTINGS_MODULE
- DJANGO_DEBUG
- DJANGO_SECRET_KEY
depends_on:
- db
frontend:
build: frontend/.
depends_on:
- backend
ports:
- 80:80