mirror of
https://github.com/rancher/os.git
synced 2025-09-08 10:11:46 +00:00
7 lines
216 B
Plaintext
7 lines
216 B
Plaintext
![]() |
#!/bin/bash
|
||
|
set -x -e
|
||
|
|
||
|
BASE=$(dirname $0)/..
|
||
|
docker build -t ros-qemu -f ${BASE}/Dockerfile.kvm ${BASE}
|
||
|
exec docker run -it --rm --net=host -v $(dirname $(pwd)):$(dirname $(pwd)) -w $(pwd) --privileged ros-qemu "$@"
|