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

how is this any different than setting up grapahana, nginx-proxy with letsencrypt companion etc with docker-compose and just replace my app image?


sort by: page size:

this looks interesting but how is this better than just doing docker-compose?

I host tens of self-hosted apps for various purposes, including ones similar to this one, all via docker-compose. Setting up new ones is a breeze (thanks to Traefik), backing up the configuration and data is trivial, upgrading to the latest version takes a few minutes at most. I’m confident my workflow is simpler and more convenient than yours. Granted, the initial investment to learn and understand the tools is pretty large.

I was looking for a dead simple solution whose deployment wouldn't require much more than a simple `docker-compose`. :)

But then how is this so different from running "docker-compose" and then do whatever you want withing the container? Is the difference just that they provide ready-made Docker images for certain environments so that you don't have to create your own? Can I get the same images on Dockerhub then?

None, I am still relying on docker compose.

The fact that everything is done with a single compose file is the reason I set it up like this (mostly because it was a good learning opportunity). I'm still trying to find a way around the necessity to expose the docker socket to configure the proxy though.

What advantage does this offer over just using docker-compose directly?

Trivially deployed using Docker compose as well. I've been using this for quite some time. iPad app works great too.

There are many reasons why you would want to use Docker but for me the biggest one is that the entire configuration, installation, and deployment is all self-contained in that docker-compose file. The rollover and load balancing features are also nice if you need to scale out but even on a single server there is a solid case to be made to use Docker. The alternative you've presented is that you'd need to install and configure Nginx, then install and configure LetsEncrypt, then install and configure Ghost. And then you'd need to make sure you documented all the steps you've performed so that you can do it again if needed in the future. The docker-compose file aligns to the "infrastructure as code" methodology and while there are many other tools that could achieve the same thing (Terraform, Ansible, Salt, etc) using docker-compose in this scenario seems to make sense.

True enough... I often with replace docker-compose examples that use a complex nginx config with a 5 line Caddyfile for Caddy instead.

what is the difference with docker-compose here ?

One simple use case... For example I have 1 simple docker app to deploy. Now I need to use docker compose with a more complicated workflow.

I'm a bit surprised nobody mentions the `--platform` argument that docker accepts to emulate a different architecture per container. It's a very smooth experience if you're reliant on 3rd party images.

Available through compose as well.


I use docker compose only. It is much more convenient than vanilla docker.

Its not as easy nor as simple as docker + docker compose.

Also docker-compose doesn't have zero downtime deploys which might be a deal breaker depending on your application.

It's not about just running the containers. It's that applications are distributed with a docker compose file as the setup medium.

Yeah, and a simple docker compose for local dev does the job pretty easily.

Why? What do I stand to gain from using this? Marginal speed improvement in some cases and a lot of headache trying to debug it in other cases?

docker-compose offers an alternative. It doesn't offer any genuinely new functionality. It may work for you if you don't know how to use the other alternative, or the other alternative is inconvenient for you for some other reason, but if it's not, it's just an extra tool that you don't need.

next

Legal | privacy