Results 83 comments of Robert Fink

I personally never run Gradle out of IntelliJ, so haven't seen this and don't have a solution, sorry. Happy to take a fix though if you get to the bottom...

Why always specify the full image name including the host:port. Does that not work for you?

The expected behavior for our workflow is to use stable names that are independent of the build location. So a local build will produce the same name and tag as...

I think you can do this today, with environment variables?

You can set your variables in circle and then do: ``` def dockerRepo = "${System.env.DOCKER_REPO}" docker { name "${dockerRepo}/${groupName}/..." .. } ```

So it seems that the appveyor integration is done in terms of @gatesn 's user name. Since he is no longer in the Palantir Org this integration probably broke.

@gatesn could you give me a hand in restoring/migrating/fixing the appveyor CI integration for this repo (and python-grpc)? Thanks very much!

@gatesn I personally have no idea what the appveyor integration does here and whether we need it or not ;)

All you need to do is set the remote repository in the image name. E.g., "my.private.host/foo/bar" . On Wed, Oct 26, 2016 at 1:56 AM jonesr91 [email protected] wrote: > I'd...

typically you `docker login `. This saves your credentials in `~/.docker/config.json` or similar. On Wed, Oct 26, 2016 at 9:15 AM jonesr91 [email protected] wrote: > How/where would I specify my...