Files
derp/docker-compose.yml
user 7520bba192 fix: mount src and data volumes in container targets
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>
2026-02-15 16:11:59 +01:00

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"]