Bind-mount src/ and data/ alongside plugins/ and config so the container picks up code changes without rebuilding. Update Makefile targets, compose file, and INSTALL.md to match. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
316 B
YAML
14 lines
316 B
YAML
services:
|
|
derp:
|
|
build:
|
|
context: .
|
|
dockerfile: Containerfile
|
|
container_name: derp
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./src:/app/src:ro,Z
|
|
- ./plugins:/app/plugins:ro,Z
|
|
- ./config/derp.toml:/app/config/derp.toml:ro,Z
|
|
- ./data:/app/data:Z
|
|
command: ["--verbose"]
|