Eric Kidd
Eric Kidd
(Thank you for incorporating my earlier changes! Here's one more patch based on some bot testing.) By default, the Slack adapter logs all Slack messages (including those not acted on...
Wow, what a great idea for a crate! I just used this to massively simplify some `neon` bindings at work. I especially like the `export!` macro. While working on this,...
If `pods/example.yml` contains: ```yml version: "2" services: {} ``` And `pods/targets/production/example.yml` contains: ```yml services: {} ``` We will output `version: "2.4"`. This breaks `kompose convert`, which seems to be pretty...
Right now, `cage pull` spams CI logs, and we'd like some way to call `docker-compose pull --quiet`. We may not want to make it 100% quiet; it might be useful...
`beta` is failing because it runs one important test that `stable` skips. To run this locally, run: ```sh cd cage cargo install -f ./examples/tutorial.sh ``` I'm investigating, but please feel...
Let's lose the dependency on `clap`'s YAML mode; `structopt` is nicer.
## What we would like upstream, in a perfect world [Original discussion here](https://github.com/docker/docker/issues/18119#issuecomment-260325229). We have two GoCD pipelines: - **base:** This builds `example/base` and tags it with a build number....
In our internal code base, we've noticed a pattern where we have the following files: - `Dockerfile.in`: This contains two build arguments that are manually set using `sed`, and which...
This should only clean up containers and volumes associated with a project, and it should ideally be defined on top of existing `docker clean` or `docker-compose clean` subcommands, if those...
I'm seeing some cases where users need to write: ``` cage up --init cage up some_pod --init cage up ``` I'd like to reduce that to a single `cage up...