aws

Drew Verlee 2022-09-09T22:34:25.949319Z

What's the closest thing in aws to google cloud could build? Having a docker container as the unit of work seems so much better to me.

lukasz 2022-09-10T15:59:18.302239Z

oh AWS... :-) CodePipeline is one thing, but there's also CodeBuild https://aws.amazon.com/codebuild/

lukasz 2022-09-10T15:59:35.887559Z

I think if you glue the two together you get an equivalent of GCP's service

2022-09-09T22:52:55.756139Z

Not familiar with google cloud but https://aws.amazon.com/fargate/ let's you run a docker image for long running stuff, and you can also use containers as lambdas

Drew Verlee 2022-09-09T22:59:15.944539Z

Fargate isn't comparable here. Aws code build batch is a similar idea to cloud build.

Drew Verlee 2022-09-09T23:01:39.025929Z

It's basically a distributed graph, where each node is an os/container and the edges are some sharded file system.

Drew Verlee 2022-09-09T23:22:54.225839Z

Codepipeline seems sightly more generic but i think it's also the same idea with less control over the os maybe...