Skip to content
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
3 changes: 3 additions & 0 deletions docs/deploy/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ functions:
web:
image:
name: my-app
command: public/index.php # a PHP file path or class name
environment:
BREF_RUNTIME: fpm
events:
Expand All @@ -153,12 +154,14 @@ functions:
console:
image:
name: my-app
command: bin/console # an executable file path
environment:
BREF_RUNTIME: console

worker:
image:
name: my-app
command: Acme\QueueWorker # a PHP file path or class name
environment:
BREF_RUNTIME: function
events:
Expand Down
Loading