11 lines
275 B
Bash
11 lines
275 B
Bash
|
#!/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 \
|
||
|
flightgear/ws30-vbp-generator:v1 /bin/bash $1
|