Live data from Hacker News

Pipelines: Your Doorway to Continuous Development

medium.com

21–26 of 26 posts

Re: Pipelines: Your Doorway to Continuous Development

#21

This looks very promising. I've been looking for a ci/CD platform that builds docker images and has pipelines. I even started building my own cause I couldn't find anything out there.

Consider looking at GitLab CI. The Runner builds Docker images, it includes a docker registry, and we call pipeline steps stages.

Re: Pipelines: Your Doorway to Continuous Development

#22
post #21

This looks very promising. I've been looking for a ci/CD platform that builds docker images and has pipelines. I even started building my own cause I couldn't find anything out there.

Consider looking at GitLab CI. The Runner builds Docker images, it includes a docker registry, and we call pipeline steps stages.

I've found it docker support to be a bit cumbersome. But it's great that it's available!

Re: Pipelines: Your Doorway to Continuous Development

#23

This looks very promising. I've been looking for a ci/CD platform that builds docker images and has pipelines. I even started building my own cause I couldn't find anything out there.

Check out concourse.ci [example pipeline at https://ci.concourse.ci/]. It fully supports building docker images - https://github.com/concourse/docker-image-resource

Re: Pipelines: Your Doorway to Continuous Development

#24
post #20

Earlier quoted context omitted.

We've got dedicated build actions for Java, .NET/.NET Core and Python that you can use to build and test your app. What do you mean by Windows Docker containers exactly?

A container in which you can run Windows processes. I'll be honest and admit that I haven't done my homework on this and I don't even know if anyone does this.

Windows Containers only went GA fairly recently with Windows Server 2016, so it is unlikely that many are using them yet. I have yet to see any CI services that mention any plans to support windows containers or acknowledge their existence.

Re: Pipelines: Your Doorway to Continuous Development

#25

This looks very promising. I've been looking for a ci/CD platform that builds docker images and has pipelines. I even started building my own cause I couldn't find anything out there.

I do this with Distelli, it's been great and works with my private npm, Consul, Vault, and other services, even on SmartOS (Joyent Triton).

Re: Pipelines: Your Doorway to Continuous Development

#26
post #24
post #20

Earlier quoted context omitted.

A container in which you can run Windows processes. I'll be honest and admit that I haven't done my homework on this and I don't even know if anyone does this.

Windows Containers only went GA fairly recently with Windows Server 2016, so it is unlikely that many are using them yet. I have yet to see any CI services that mention any plans to support windows containers or acknowledge their existence.

This is interesting. For now our containters are Linux based, we'll see where it's going to.
Post reply on HN