Skip to content

Commit

Permalink
chore: fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
IronCore864 committed Nov 8, 2024
1 parent 68afce1 commit 82a510d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/explanation/service-dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ Simply put, you can configure a list of other services in the `requires` section

When Pebble starts a service, it also starts the services which that service depends on (configured with `requires`). Conversely, when stopping a service, Pebble also stops services which depend on that service.

For the start order of the services, see [Service start order](./service-start-order.txt).
For the start order of the services, see [Service start order](./service-start-order.md).

For example, if service `nginx` requires `logger`, `pebble start nginx` will start both `nginx` and `logger` (in an undefined order). Running `pebble stop logger` will stop both `nginx` and `logger`; however, running `pebble stop nginx` will only stop `nginx` (`nginx` depends on `logger`, not the other way around).

0 comments on commit 82a510d

Please sign in to comment.