Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Be a bit more consistent in the documentation #176

Merged
merged 1 commit into from
Oct 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,14 +212,14 @@ credentials.
Providing an agent in docker compose is easy, as it's just starting
the orignial Blackfire image.

``` yaml
```yaml
php:
image: 'ghcr.io/reload/php-fpm:8.2'
environment:
BLACKFIRE_CLIENT_ID: <your client key>
BLACKFIRE_CLIENT_TOKEN: <your client token>
blackfire:
image: blackfire/blackfire
image: 'blackfire/blackfire'
environment:
BLACKFIRE_SERVER_ID: <your server key>
BLACKFIRE_SERVER_TOKEN: <your server token>
Expand All @@ -239,11 +239,11 @@ For simple development setups we recommend combining it with

```yaml
php:
image: ghcr.io/reload/php-fpm:8.2
image: 'ghcr.io/reload/php-fpm:8.2'
environment:
SMTPSERVER: mail
SMTPSERVER: 'mail'
mail:
image: axllent/mailpit
image: 'axllent/mailpit'
ports:
- '25'
- '80'
Expand Down