mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-01-04 08:39:42 -06:00
16 lines
422 B
YAML
16 lines
422 B
YAML
services:
|
|
|
|
trail:
|
|
image: docker.io/trailbase/trailbase:latest
|
|
# build: .
|
|
ports:
|
|
- "${PORT:-4000}:4000"
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ${DATA_DIR:-.}/traildepot:/app/traildepot
|
|
environment:
|
|
# Override the default 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"
|