mirror of
https://github.com/calibrain/shelfmark.git
synced 2026-02-20 15:56:36 -05:00
- URL normalization (WIP) for external clients / prowlarr / booklore URLs used. - More robust handling of Windows path directories in mapping - UI tweaks - Compose clean-ups
23 lines
645 B
YAML
23 lines
645 B
YAML
# Local development - builds from source with debug enabled
|
|
services:
|
|
shelfmark-dev:
|
|
extends:
|
|
file: ./compose/docker-compose.yml
|
|
service: shelfmark
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
target: shelfmark
|
|
cap_add:
|
|
- SYS_PTRACE
|
|
environment:
|
|
DEBUG: true
|
|
volumes:
|
|
- ./.local/config:/config
|
|
- ./.local/books:/books
|
|
- ./.local/log:/var/log/shelfmark
|
|
- ./.local/tmp:/tmp/shelfmark
|
|
- ./shelfmark:/app/shelfmark:ro
|
|
# Required for torrent / usenet - path must match your download client's volume exactly
|
|
# - /path/to/downloads:/path/to/downloads
|