This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// bind whatever keybind you want | |
[ | |
{ | |
"command": "multiCommand.runRgFAndFocusTerminal", | |
"key": "cmd+k" | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /bin/bash | |
# FF_NETWORK_PER_BUILD = true needs to be in srv/gitlab-runner/config/config.toml under [runners.feature_flags] | |
docker create network --driver bridge gitlab-runner-network | |
# REGISTER | |
docker run \ | |
--rm \ | |
--network gitlab-runner-network \ | |
-v /srv/gitlab-runner/config:/etc/gitlab-runner \ |