edbizarro / gitlab-ci-pipeline-php

:coffee: Docker images for test PHP applications with Gitlab CI (or any other CI platform!)
https://hub.docker.com/r/edbizarro/gitlab-ci-pipeline-php
MIT License
529 stars 167 forks source link

mkdtemp: private socket dir: Permission denied #71

Closed dahaupt closed 5 years ago

dahaupt commented 5 years ago

Since the last update I get this error in my deployment script:

$ eval $(ssh-agent -s)
mkdtemp: private socket dir: Permission denied
$ [[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
$ ssh-add <(echo "$SSH_PRIVATE_KEY")
Could not open a connection to your authentication agent.

It worked fine on the last pipeline 12 hours ago.

Executing sudo chmod 1777 /tmp resolves the issue (as found here).

Thanks for your dedicated work!

edbizarro commented 5 years ago

Fixed!

dahaupt commented 5 years ago

@edbizarro Thanks a lot, it's working fine again!