Remove monospace font from command headings

This commit is contained in:
Ben Firshman 2014-01-02 23:05:58 +00:00
parent dd1f8934ad
commit 3d411ed0bb

View File

@ -198,44 +198,48 @@ environment:
Most commands are run against one or more services. If the service is omitted, it will apply to all services. Most commands are run against one or more services. If the service is omitted, it will apply to all services.
#### `build [SERVICE...]` Run `fig [COMMAND] --help` for full usage.
#### build
Build or rebuild services. Build or rebuild services.
Services are built once and then tagged as `project_service`. If you change a service's `Dockerfile` or its configuration in `fig.yml`, you will probably need to run `fig build` to rebuild it. Services are built once and then tagged as `project_service`. If you change a service's `Dockerfile` or its configuration in `fig.yml`, you will probably need to run `fig build` to rebuild it.
#### `kill [SERVICE...]` #### kill
Force stop service containers. Force stop service containers.
#### `logs [SERVICE...]` #### logs
View output from services. View output from services.
#### `ps` #### ps
List running containers. List running containers.
#### `rm [SERVICE...]` #### rm
Remove stopped service containers. Remove stopped service containers.
#### `run SERVICE COMMAND [ARGS...]` #### run
Run a one-off command for a service. Run a one-off command for a service. E.g.:
$ fig run web python manage.py shell
Note that this will not start any services that the command's service links to. So if, for example, your one-off command talks to your database, you will need to run `fig up -d db` first. Note that this will not start any services that the command's service links to. So if, for example, your one-off command talks to your database, you will need to run `fig up -d db` first.
#### `start [SERVICE...]` #### start
Start existing containers for a service. Start existing containers for a service.
#### `stop [SERVICE...]` #### stop
Stop running containers without removing them. They can be started again with `fig start`. Stop running containers without removing them. They can be started again with `fig start`.
#### `up [SERVICE...]` #### up
Build, create, start and attach to containers for a service. Build, create, start and attach to containers for a service.