2021-11-16 01:23:44 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
BASE_DIR="/home/flightgear"
|
|
|
|
|
|
|
|
mkdir -p output
|
|
|
|
docker run \
|
|
|
|
--rm \
|
|
|
|
--mount "type=bind,source=`pwd`/data,target=${BASE_DIR}/data,readonly" \
|
|
|
|
--mount "type=bind,source=`pwd`/output,target=${BASE_DIR}/output" \
|
|
|
|
-it \
|
2022-01-22 22:18:23 +08:00
|
|
|
flightgear/ws30-vbp-generator:latest /bin/bash $1
|