You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 13, 2018. It is now read-only.
Conex currently only builds one container per repo.
We have a repo, we'll call it tabby-cat, which defines multiple containers and uses docker-compose as well as custom bash scripts to build and push the multiple images to ECR. The multiple images are tagged with:
where each of those sub-images is defined in a different part of the services section of the docker-compose.yml file.
It would be great if we could rewrite conex to support multiple containers.
Plan for how to do this
The outputs of docker-compose build are multiple images with the format tabby-cat_rails, tabby-cat_cgimap, etc., where tabby-cat is the name of the folder and rails is the name of the section of the docker compose file. Using some string transformations, I think we could re-tag these images with the <repo>:<gitsha>-<subimage> format and push all of them to ECR.
Conex currently only builds one container per repo.
We have a repo, we'll call it
tabby-cat, which defines multiple containers and usesdocker-composeas well as custom bash scripts to build and push the multiple images to ECR. The multiple images are tagged with:where each of those sub-images is defined in a different part of the
servicessection of thedocker-compose.ymlfile.It would be great if we could rewrite conex to support multiple containers.
Plan for how to do this
The outputs of
docker-compose buildare multiple images with the formattabby-cat_rails,tabby-cat_cgimap, etc., wheretabby-catis the name of the folder andrailsis the name of the section of the docker compose file. Using some string transformations, I think we could re-tag these images with the<repo>:<gitsha>-<subimage>format and push all of them to ECR.cc/ @Yuffster @rclark