9 lines
268 B
Bash
Executable file
9 lines
268 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
CONTAINER=puremourning/vimspector:manual
|
|
|
|
docker run --cap-add=SYS_PTRACE \
|
|
--security-opt seccomp=unconfined \
|
|
--mount src="$(pwd)/../..",target=/home/dev/vimspector,type=bind \
|
|
-it ${CONTAINER} \
|
|
"$@"
|