Ask HN: While developing, do you run all the dependent services on your machine?
1–10 of 16 posts
Re: Ask HN: While developing, do you run all the dependent services on your machine?
#2http://www.smashcompany.com/technology/docker-is-a-dangerous...
When I need to run multiple database, or want a database with a copy of production data, then sometimes we run that remotely. Running a few servers that all developers can use seemed to be standard practice 10 years ago, but the practice seems to be in retreat, replaced by the notion of "Use Docker to run every service on your own machine." But I have not seen that Docker actually makes that easy to do, and if your team has a full-time devops person who can spin up some extra machines, then usually it saves the whole team a lot of time to simply rely on a few central servers that the devops person has set up for development.
Re: Ask HN: While developing, do you run all the dependent services on your machine?
#3Re: Ask HN: While developing, do you run all the dependent services on your machine?
#4Yes, mostly I do. And I have not yet needed Docker to do this, though many people have argued that this is what Docker is for. I tried to point out how empty that argument was in "Docker is the dangerous gamble which we will regret": http://www.smashcompany.com/technology/docker-is-a-dangerous... When I need to run multiple database, or want a database with a copy of production data, then sometimes we run that remote…
Re: Ask HN: While developing, do you run all the dependent services on your machine?
#5Yes, mostly I do. And I have not yet needed Docker to do this, though many people have argued that this is what Docker is for. I tried to point out how empty that argument was in "Docker is the dangerous gamble which we will regret": http://www.smashcompany.com/technology/docker-is-a-dangerous... When I need to run multiple database, or want a database with a copy of production data, then sometimes we run that remote…
docker-compose up -d
What’s not easy about that?
Re: Ask HN: While developing, do you run all the dependent services on your machine?
#6Re: Ask HN: While developing, do you run all the dependent services on your machine?
#7Current job: there's about 10-20x as many integration points with downstream services, many of them owned by other teams. No investment in making it possible to spin up isolated service graph on a dev machine. Heavy use of persistent shared testing environments in company data centre, these environments usually in one or more state of brokenness. Some use of mountebank to replace troublesome downstream services with stubs returning canned data.
Re: Ask HN: While developing, do you run all the dependent services on your machine?
#8Yes, mostly I do. And I have not yet needed Docker to do this, though many people have argued that this is what Docker is for. I tried to point out how empty that argument was in "Docker is the dangerous gamble which we will regret": http://www.smashcompany.com/technology/docker-is-a-dangerous... When I need to run multiple database, or want a database with a copy of production data, then sometimes we run that remote…
> I have not seen that Docker actually makes that easy to do docker-compose up -d What’s not easy about that?
http://www.smashcompany.com/technology/docker-protects-a-pro...
And then scroll down to where you see this:
UPDATE 2018-07-09
And read that Slack conversation. That is a real conversation that actually happened. We lost 3 days trying to fix that bug, which in the end was a complex interplay of the Docker cache and the way the Dockerfile was written.
This is the sales pitch for Docker:
docker-compose up -d
But that Slack conversation is the reality.
Re: Ask HN: While developing, do you run all the dependent services on your machine?
#9Yes, mostly I do. And I have not yet needed Docker to do this, though many people have argued that this is what Docker is for. I tried to point out how empty that argument was in "Docker is the dangerous gamble which we will regret": http://www.smashcompany.com/technology/docker-is-a-dangerous... When I need to run multiple database, or want a database with a copy of production data, then sometimes we run that remote…
> I have not seen that Docker actually makes that easy to do docker-compose up -d What’s not easy about that?
However if your application docker container requires compilation and you need to restart docker compose once you make changes to the codebase (and/or want to run integration tests), the whole docker compose flow might add an extra minute or two to your feedback loop and slow down development.
In those cases I'd rather run everything locally (still would include docker-compose.yaml file for developers who prefer that and are not comfortable running all required services locally).
Developing Go applications I have found my development flow much more agile without docker, docker was decreasing my productivity a bit so I stopped using it.
Our current integration test suite runs entirely through docker compose flow normally (in the CI or locally) but launching the integration test suite outside of docker, if you have all dependencies running locally, is quite faster and saves a lot of time, thus increasing my productivity.