mirror of
https://github.com/Noratrieb/vps.git
synced 2026-01-14 16:55:00 +01:00
8 lines
377 B
Bash
8 lines
377 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -eu pipefail
|
|
|
|
docker run -d --name cargo-bisect-rustc-service --net=internal --restart=always \
|
|
"-v=/apps/cargo-bisect-rustc-service/db:/app/db" \
|
|
"-e=SQLITE_DB=/app/db/db.sqlite" "-e=RUST_LOG=debug" \
|
|
docker.nilstrieb.dev/cargo-bisect-rustc-service:1.8
|