Skip to content

Instantly share code, notes, and snippets.

@ryanmaclean
Last active December 9, 2021 19:03
Show Gist options
  • Select an option

  • Save ryanmaclean/368818166c442417c71bf3d0de9b15ba to your computer and use it in GitHub Desktop.

Select an option

Save ryanmaclean/368818166c442417c71bf3d0de9b15ba to your computer and use it in GitHub Desktop.
Gitlab Runner EFS (NFS)
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