|
|
|
|
|
by sepositus
487 days ago
|
|
> These tools, by default make things complicated and slower, so there needs to be a positive benefit for their use case that balances this. I'm confused by this reasoning. How does Docker make things slower by default? Why would you look favorably on a company that doesn't use it? make
scp mybin machine@foo.com/deploy
ssh machine@foo.com -c 'systemctl restart myservice'
Or docker build
docker push myimage@latest
ssh machine@foo.com -c 'docker-compose up'
At least with the second one, you have automatic artifact tracking for easier rollbacks. |
|