Eric Kidd
Eric Kidd
> The only reason we _need_ `cage test ` at this point is because some services share a database and schema. Without this use case, there really is no reason...
Let's just convert `version: "2"` to `version: "2.1"` whenever we can. Oh, yeah, if you want me to look at PRs and I don't respond in a day or two,...
@dkastner @roman-biqmind Does anybody know the current state of any PRs associated with this? I'd like to take another look and see if there's anything I can merge. Thank you!
At this point, we're using `version: 2.4` as our internal version, and we're applying JSON validation on output using the official schemas from `docker-compose`. But we're outputting `version: "2"`, and...
Sweet! I definitely want to try this.
From the logs: ``` waiting for server to start....2017-10-18 16:00:26.569 UTC [41] FATAL: data directory "/var/lib/postgresql/data" has group or world access 2017-10-18 16:00:26.569 UTC [41] DETAIL: Permissions should be u=rwx...
OK, the underlying problem here is actually with the standard Docker `postgres` containers. They no longer reliably allow you to mount newly-created named volumes. I've switched to the Alpine version...
I've seen a couple different issues on various PG Docker containers, but I haven't actually found the repo for the official upstream container. Given that this issue existed with 0.2.2,...
Does `my-private-registry` contain a real domain name with periods? I think that might be mandatory. [Here's](https://github.com/emk/compose_yml/blob/23313755384fe033d79f976ad5cc94afe7b300e0/src/v2/image.in.rs#L80) the regex that we're using: ``` ^(?:([^/:.]+\.[^/:]+)(?::([0-9]+))?/)?(?:([^/:.]+)/)?([^/:]+)(?::([^/:]+))?$ ``` This was based on a earlier...
Here's a list of test cases showing the syntax we definitely support, from further down in the same file: ``` let pairs = vec!( (img1, "hello"), (img2, "example/hello:4.4-alpine"), (img3, "example.com:123/hello:latest"),...