2023-08-31 15:17:14 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
set -euo pipefail
|
|
|
|
IFS=$'\n\t'
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
|
|
|
|
function main {
|
|
|
|
make --directory "$DIR/../docker"
|
2023-08-31 21:21:14 -04:00
|
|
|
exec docker run --init --rm --read-only --mount type=tmpfs,destination=/tmp --publish 3000:3000/tcp org-investigation
|
2023-08-31 15:17:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
main "${@}"
|