Skip to content

Add service specific up/down targets

Matthias Käppler requested to merge mk/service-up-down-targets into master

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.

Merge request reports