mirror of
https://github.com/th3r00t/pyShelf.git
synced 2026-04-28 01:59:35 -04:00
27 lines
598 B
YAML
Vendored
27 lines
598 B
YAML
Vendored
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/"
|
|
# ports:
|
|
# - "5433:5432"
|
|
pyshelf:
|
|
image: "pyshelf/pyshelf"
|
|
restart: always
|
|
ports:
|
|
- "8000:8000"
|
|
- "1337:1337"
|
|
volumes:
|
|
- "${LOCAL_BOOK_DIR}:/books"
|
|
# depends_on:
|
|
# - db
|
|
#volumes:
|
|
# db_data:
|