On Wed, Feb 17, 2016 at 11:25:56PM +0000, Daniel Quinn wrote:
> I tried to run a docker-compose.yaml file and it exploded with a version
> error. When I asked around about what I did wrong, it turns out that it
> requires docker-compose version 1.6.x and Gentoo doesn't have anything
> newer than 1.5.2. Is there an official overlay for this sort of thing,
> or do Gentooers do something else with Docker typically?
>
Until the new version gets added to the tree, I would run docker-compose
out of a virtualenv:
virtualenv ~/docker-compose
source ~/docker-compose/bin/activate
pip install docker-compose
This is not a great solution, but it'll do for the mean time.
Alec