mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-01-05 09:20:46 -06:00
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
15 lines
340 B
YAML
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"
|