Skip to content

Commit

Permalink
docs: fix command to run containers (dunglas#512)
Browse files Browse the repository at this point in the history
* docs(production): fix command to run containers

The commands were pointing to a `docker-compose.yml` file that doesn't exist. It's `compose.yaml` now.

* docs(tls): update config file name

* docs(extra-services): update config file name
  • Loading branch information
drazik authored and AchillesKal committed Nov 28, 2023
1 parent 048e5fd commit fcc491f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions docs/extra-services.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Support for Extra Services

Symfony Docker is extensible. When you install a compatible Composer package using Symfony Flex,
the recipe will automatically modify the `Dockerfile` and `docker-compose.yml` to fulfill the requirements of this package.

The currently supported packages are:

* `symfony/orm-pack`: install a PostgreSQL service
* `symfony/mercure-bundle`: use the Mercure.rocks module shipped with Caddy
* `symfony/panther`: install chromium and these drivers
* `symfony/mailer`: install a MailCatcher service
* `blackfireio/blackfire-symfony-meta`: install a Blackfire service
2 changes: 1 addition & 1 deletion docs/tls.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ For instance, to use self-signed certificates created with [mkcert](https://gith
`mkdir frankenphp/certs -p`
3. Generate the certificates for your local host (example: "server-name.localhost"):
`mkcert -cert-file frankenphp/certs/tls.pem -key-file frankenphp/certs/tls.key "server-name.localhost"`
4. Add these lines to the `./docker-compose.override.yml` file about `CADDY_EXTRA_CONFIG` environment and volume for the `php` service :
4. Add these lines to the `./compose.override.yaml` file about `CADDY_EXTRA_CONFIG` environment and volume for the `php` service :
```diff
php:
environment:
Expand Down

0 comments on commit fcc491f

Please sign in to comment.