mirror of
https://github.com/rancher/os.git
synced 2025-06-21 12:37:04 +00:00
6 lines
159 B
Bash
Executable File
6 lines
159 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
docker rm -fv ros-build > /dev/null 2>&1 || :
|
|
exec docker run -v /var/run/docker.sock:/var/run/docker.sock --name=ros-build ros-build "$@"
|