Everything docker related is now available in its own subfolder

This commit is contained in:
MartenBE
2020-07-30 20:49:42 +02:00
parent ec9b558632
commit e1f1c50809
6 changed files with 13 additions and 23 deletions

25
docker/docker-compose.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
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: