-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deploy does not work under docker context #4
Comments
strange. Is that for all deploy steps? (e.g. does the custom scripts deploy step run?) |
Custom scripts deploy works correctly because it uses an object (cmd, args). When we use an object with cmd and args, it uses docker. But heroku uses |
Oh man! Now I totally understand what's going on, also with Strider-CD/strider-docker-runner#17 Strider-docker-runner works by proxying the I'm not entirely sure how to address this. My assumption is that the Perhaps one solution would be to setup volume sharing with the host system? I don't know. |
Wow, yeah, sounds annoying. I doubt ssh key files from the filesystem are used -- if so they should stop being used (I just patched this in strider-ssh-deploy a few days ago). As far as the spawn stuff... yeah, that's tricky... @niallo thoughts? |
adding refs to other related bugs, since this is the closest we've come to knowing how to fix it: |
Plugins should use a plugin-specific way of running a command in the On Thursday, September 4, 2014, Keyvan Fatehi [email protected]
Niall O'Higgins |
@niallo git+ssh uses gitane, which uses child_process directly https://github.com/niallo/Gitane/blob/master/index.js#L6 |
:( It needs to be patched to accept a function. On Fri, Sep 5, 2014 at 10:56 AM, Jared Forsyth [email protected]
Niall O'Higgins |
just PRd gitane for accepting a function. niallo/Gitane#4 |
@jaredly thanks Jared!! |
@niallo does gitane need to be bumped and published? |
I think so, yes. On Thursday, October 16, 2014, Ilya Radchenko [email protected]
Niall O'Higgins |
The worker's deploy step does not run within the context of the docker container
The text was updated successfully, but these errors were encountered: