Deleted confusing docker-compose.yml

This commit is contained in:
MartenBE
2020-07-31 14:11:56 +02:00
parent 562337dac5
commit b1297bcb66

View File

@@ -1,25 +0,0 @@
version: "3.7"
services:
db:
image: "postgres"
environment:
- "POSTGRES_PASSWORD=pyshelf"
- "POSTGRES_USER=pyshelf"
- "POSTGRES_DB=pyshelf"
volumes:
- "pgdata:/var/lib/postgresql/data/"
pyshelf:
build:
context: ..
dockerfile: ./docker/Dockerfile
ports:
- "8080:8000"
volumes:
- "../books:/books"
depends_on:
- db
volumes:
pgdata: