Last active
December 9, 2021 19:03
-
-
Save ryanmaclean/368818166c442417c71bf3d0de9b15ba to your computer and use it in GitHub Desktop.
Gitlab Runner EFS (NFS)
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
| sudo mkdir /ebscache/cache | |
| sudo mkdir /ebscache/build-cache | |
| sudo chown gitlab-runner:gitlab-runner /ebscache/cache | |
| sudo chown gitlab-runner:gitlab-runner /ebscache/build-cache | |
| sudo chmod -R 755 /ebscache/cache | |
| sudo chmod -R 755 /ebscache/build-cache | |
| sudo rm -rf /cache | |
| sudo ln -s /ebscache/cache /cache | |
| sudo rm -rf /build-cache | |
| sudo ln -s /ebscache/build-cache /build-cache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment