Removed final django dependency.

This commit is contained in:
th3r00t
2023-03-18 00:58:35 -04:00
parent e4686e22b1
commit 4033937486
2 changed files with 26 additions and 40 deletions

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

@@ -0,0 +1,24 @@
version: "3.7"
services:
db:
image: "postgres"
restart: always
environment:
- "POSTGRES_PASSWORD=pyshelf"
- "POSTGRES_USER=pyshelf"
- "POSTGRES_DB=pyshelf"
volumes:
- "db_data:/var/lib/postgresql/data/"
pyshelf:
image: "pyshelf/pyshelf"
restart: always
ports:
- "8000:8000"
- "1337:1337"
volumes:
- "${LOCAL_BOOK_DIR}:/books"
depends_on:
- db
volumes:
db_data: