.. Copyright 2014 tsuru authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. ++++++++ Services ++++++++ You can manage your services using the tsuru command-line interface. To list all services avaliable you can use, you can use the `service-list `_ command: .. highlight:: bash :: $ tsuru service-list To add a new instance of a service, use the `service-add `_ command: .. highlight:: bash :: $ tsuru service-add To remove an instance of a service, use the `service-remove `_ command: .. highlight:: bash :: $ tsuru service-remove To bind a service instance with an app you can use the `bind `_ command. If this service has any variable to be used by your app, tsuru will inject this variables in the app's environment. .. highlight:: bash :: $ tsuru bind [--app appname] And to unbind, use `unbind `_ command: .. highlight:: bash :: $ tsuru unbind [--app appname] For more details on the ``--app`` flag, see `"Guessing app names" `_ section of tsuru command documentation.