mirror of
https://github.com/calibrain/shelfmark.git
synced 2026-04-19 21:39:17 -04:00
- Updated frontend CSS to Tailwind v4 - Reverted socket IO origin restriction - Fixed search queries not persisting after auth redirect - Move advanced search options to left UI selector - Unlock IRC source to be used for audiobook content_type - Tweaked security settings env var syncing to be prioritised - Fix AA "all languages" query generation - Added language-free AA query as second fallback in case of no results - Testing moving SeleniumBase scratch files to /tmp via symlink - Added enhanced logging for activity dismissals and other events - Removed iFrame restrictions
26 lines
752 B
YAML
26 lines
752 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
|
|
# HIDE_LOCAL_AUTH: true
|
|
OIDC_AUTO_REDIRECT: true
|
|
volumes:
|
|
- ./.local/config:/config
|
|
- ./.local/books:/books
|
|
- ./.local/log:/var/log/shelfmark
|
|
- ./.local/tmp:/tmp/shelfmark
|
|
- ./shelfmark:/app/shelfmark:ro
|
|
- ./frontend-dist:/app/frontend-dist:ro
|
|
# Required for torrent / usenet - path must match your download client's volume exactly
|
|
# - /path/to/downloads:/path/to/downloads
|