Containerfile now installs only dependencies (maxminddb). Source code, plugins, and config are volume-mounted via docker-compose. Code changes no longer require an image rebuild. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
289 B
YAML
13 lines
289 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
|
|
command: ["--verbose"]
|