libcompose
libcompose copied to clipboard
*Unmaintained/Deprecated* An experimental go library providing Compose-like functionality
Fixed typo in Build function signature, replaced sevice/service
Here is the docker compose file > {"networks":{"default":{}},"services":{"helloworld":{"container_name":"helloworld","environment":["TEST=hello"],"image":"tutum/hello-world","networks":{"default":{}}}},"version":"2.0","volumes":{}} This docker compose file fails with libcompose but works with docker-compose CLI. Narrowed down the problem to : ERRO[0000] Failed Starting helloworld...
The following docker compose file fails to work with libcompose > version: "2.0" > services: > postgres: > image: 'postgres:10.4' > container_name: postgres > restart: always > networks: > my-network:...
According to documentation https://docs.docker.com/compose/compose-file/compose-versioning/#version-2 . Version 2 and 2.0 are meant to be the same although libcompose seems to be treating them differently throwing out a different config whenever the...
Currently the libcompose project object can notify when particular events occur via the `AddListener` function. This is great when you are trying to get events from libcompose actions, however, this...
I have a need to inject additional volumes and environment variables, as well as edit some port mappings depending on additional configuration parameters. My current method of achieving this is...
I haven't investigated why yet, however if you have a `network:` declaration in the docker-compose file and you run libcompose up, the network takes 10+ seconds to be created the...
I'm considering using this lib in another project of mine, however, I may not want to commit to using this lib if the project is dead. There have been ~7...
When trying to use a docker-compose.yml file with version 3 syntax, I get the following error: ``` ERRO[0000] Could not parse config for project myprojectname : yaml: unmarshal errors: line...
I try to build `docker-compose -f up` with libcompose. Any way to start the service in foreground without `context.Background()`? I searched around, read the godocs and did some tests without...