Hacker Read top | best | new | newcomments | leaders | about | bookmarklet login

That is what Piku (https://github.com/piku) is all about. You can easily deploy containers through it as well.


sort by: page size:

This looks great. But if you don’t need containers or are using tiny hardware, consider trying out Piku:

https://github.com/piku

(You can use docker-compose with it as well, but as a deployment step — I might bake in something nicer if there is enough interest)


I wrote a Heroku-like mini-PaaS (https://github.com/piku) to escape containers for a bit, but it now acts as a stepping-stone: I iterate quickly on it, then add a Dockerfile :)

Also check out piku, especially if you are hosting Python or Node apps:

https://github.com/piku/webapp-tutorial/blob/master/README.m...

It is a way to get the same sort of developer experience benefit as dokku, but without dockers and containers, using plain UNIXy tools on a single Linux node. The above link explains how it works.


Check out Dokku for deploying docker containers. It's like a mini-heroku in 100 lines of bash.

https://github.com/progrium/dokku


If you want to omit the registry stage, with KwaWingu.com you can deploy a GitHub repo directly to a container, with full control over the Dockerfile. The container lives behind an SSL-terminated ALB to which you can associate a domain name if you're running a public web service. Auto-scaling not yet supported but coming in the future.

This is essentially a web app that helps you deploy new instances of my Datasette application https://github.com/simonw/datasette without having to install anything on your own machine first.

I'm using new features of the Zeit API - https://zeit.co/api - which makes it trivial to build apps that themselves deploy other apps. You dynamically construct a Dockerfile plus associated files, POST it to their deployment API and get back a URL which will host the resulting container: https://zeit.co/api#endpoints/deployments

The possibilities with this kind of API are pretty amazing. Here's their announcement: https://zeit.co/blog/api-2


Containers, e.g. through Docker, are good for that kind of thing.

Super cool. Already saw this on Github actually. It'd be awesome if it supports remote containers as well.

You can also do that with rootless containers via Podman. There’s even a convenient wrapper for that workflow made by Red Hat called Toolbox (https://github.com/containers/toolbox)

You can build the containers with Docker and ship them to a repository. The format is the same.

There are also tools like jib which can build containers without docker: https://github.com/GoogleContainerTools/jib


I'm in the process of building a system to do just that; super easy, small to medium container deployment. It's still a WIP and there's not much (or any) documentation, but if it generates some interest I'll work on it more and maybe post a Show HN.

In short, all you have to do is POST a url to a github repo and the system will pull your code, build a docker image from your Dockerfile, spin up a container, and then reverse proxy to the container's IP.

All you have to do is provide a repo with a Dockerfile and the deployment system does the rest.

Here's the code for it; https://gitlab.rlyshw.com/rlyshw/tiny-deploy

and here is an outdated blog post that outlines how it works; https://blog.rlyshw.com/2016/07/13/home-brew-deployment-syst...


Ahah! Reminds me of what we're building at Koyeb. (https://www.koyeb.com/blog/the-koyeb-serverless-engine-docke...)

It should be as easy to deploy and deal with containers as it is to deploy serverless functions.

Disclaimer : I'm one of the co-founders of Koyeb.


Also https://github.com/google/nixery is nice.

I used to easily add a sidecar container to my k8s workload, with the tools I need, without having to maintain a dockerfile and setup an automation to build the container.


Dokku is something I normally use. Running on the smallest Digital Ocean instance.

Another Docker-based solution I currently look at is https://deployit.io - because it wants to offer a very user friendly seamless integration of local, remote self-hosting and remote their-hosting. Open Source, on github.


For a simpler option without Docker, but still with GIT Heroku-style, check out Polybox[0].

Polybox[0] is an itty-bitty PaaS that uses git push to deploy micro-services and websites on your own servers.

[0]https://github.com/mardix/polybox


Have the ability to build containers on demand from source as well as host your own repo.

Or Docker containers :-)

I've had pretty good experiences with https://yacht.sh/, which only does docker containers.

DigitalOcean for example has one click Dokku installs. They also have the more morern managed containers thing that many PaaS are offering, where you can git push your app and it'll run in a container.
next

Legal | privacy