Live data from Hacker News

Show HN: GCI, Fly.io like deployments with any VM

github.com

1–4 of 4 posts

Show HN: GCI, Fly.io like deployments with any VM

#1
I've been a big fan of fly.io with it’s devx, but cold starts and pricing have been a consistent problem. Even for side projects it's painful if they take 30s to load, it just kills the whole experience.

With coding agents becoming good, there were a lot more things I started building, and I just wanted to run all of those things!

GCI was built to solve this. It’s just a CLI, just uses ssh to interact with your target machine, and relies on docker swarm to get your services running (docker swarm is IMO underrated, providing benefits even with a single node).

It can deploy on any machine that can be ssh’d into and runs docker.

GCI provides the missing devx gap between docker swarm and fly.io. Building images locally, getting them onto the target machine, fetching logs, managing different servers, …

Check it out on github, or for more in-depth docs at https://gci.jonas.foo/

Show HN: GCI, Fly.io like deployments with any VM
github.com

Re: Show HN: GCI, Fly.io like deployments with any VM

#3

What's the difference with https://github.com/psviderski/uncloud ?

there's no daemon with gci, it's just docker swarm doing everything.

GCI itself is just a command line tool, just layering opinions and convenience on top to make the experience more smooth