Files
trailbase/docker-compose.yml
Sebastian Jeltsch bdb3735840 Squash all commits for a fresh start.
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
2024-10-30 23:38:56 +01:00

15 lines
340 B
YAML

services:
trail:
build: .
ports:
- "4000:4000"
restart: unless-stopped
volumes:
- ./traildepot:/app/traildepot
environment:
# Setup Rust's env-logger.
RUST_LOG: "info,refinery_core=warn"
RUST_BACKTRACE: "1"
command: "/app/trail --data-dir /app/traildepot run --address 0.0.0.0:4000"