Add service specific up/down targets
Currently, make up
and make down
start/stop/remove/create all containers. It would be nice to have finer grained control, so I added service-specific targets.
This way you can start and stop individual services like so:
$ make up-sidekiq
$ make down-sidekiq
I use rm
for down-ing a single service because docker-compose down
always applies to all.