Hacker News new | ask | show | jobs
by Tomdarkness 3680 days ago
Looks great. One thing that does not appear to be clear though is if you build multiple docker images from the same project.

Our deployment workflow at the moment builds two docker images, one for the web app and another for the background services. Both share the same code.

It would appear you can only have one docker image per project?

1 comments

AFAIK you can just have 2 stages to build each image and push both under different tags.
You can do this but currently you can have only one image per project. We did this to keep it simple. You can use a dummy project to work around it. Or consider making web app and the background services separate projects.