Reputation: 11746
How does one auto-restart a docker-compose process after the machine reboots? For non-docker processes, I use supervisord on Ubuntu. Is there an equivalent on mac for docker-compose? What about on Ubuntu?
Upvotes: 1
Views: 178
Reputation: 72868
for that, you'll want a docker swarm. you can create a single-node swarm, and docker swarm natively understands the docker-compose file
Upvotes: 1