Laravel
Reverb
Laravel Reverb with Docker
We simply pass the command to the Docker container and Laravel will start the Reverb process.
php artisan reverb:start
Important concepts
Want to skip the setup? Spin Pro handles Laravel schedulers on your VPS with Docker and zero-downtime deployments—all configured for you.
- You will need to follow the Laravel Reverb setup instructions to install the Laravel Reverb package into your Laravel application.
- In most cases, you probably want to run this as a separate container from your web container
- If you're using
fpm-apacheorfpm-nginx, might need to set the stop signal toSIGTERMfor a graceful shutdown (see this PR for more details why) - Be sure to set the health check
- You may need a proxy like Traefik to correctly route traffic to the right container
- If you need to run Reverb in the same container, you might want to look into writing your own S6 Overlay script to manage and monitor multiple processes in one container.
Run it with Docker
Notice Laravel Reverb is running on port
8000, where as Laravel is running on port 8080. You may need to set additional environment variables and configure a reverse proxy like Traefik to correctly route traffic to the right container.Example & Simplified Docker Compose File
compose.yml
services:
php:
image: my/laravel-app
labels:
- "traefik.enable=true"
- "traefik.http.routers.laravel.tls=true"
- "traefik.http.routers.laravel.entrypoints=websecure"
- "traefik.http.routers.laravel.rule=Host(`https://app.example.com`)"
- "traefik.http.services.laravel.loadbalancer.server.port=8080"
- "traefik.http.services.laravel.loadbalancer.server.scheme=http"
reverb:
image: my/laravel-app
command: ["php", "/var/www/html/artisan", "--port=8000", "reverb:start"]
stop_signal: SIGTERM # Graceful shutdown for fpm-apache or fpm-nginx
healthcheck:
# This is our native healthcheck script for Reverb
test: ["CMD", "healthcheck-reverb"]
start_period: 10s
labels:
- "traefik.enable=true"
- "traefik.http.routers.reverb.tls=true"
- "traefik.http.routers.reverb.entrypoints=websecure"
- "traefik.http.routers.reverb.rule=Host(`https://reverb.example.com`)"
- "traefik.http.services.reverb.loadbalancer.server.port=8000"
- "traefik.http.services.reverb.loadbalancer.server.scheme=http"
Laravel ENV updates
Reverb may require a few ENV variables to be set in your Laravel application.
| Laravel ENV Variable | Description | Value if matching example above |
|---|---|---|
REVERB_HOST | The hostname the CLIENT will connect to. | reverb.example.com |
REVERB_PORT | The port the CLIENT will connect to. | 443 |
REVERB_SCHEME | The scheme the CLIENT will connect to. | https |
Be sure to not get REVERB_HOST or REVERB_PORT confused with REVERB_SERVER_HOST or REVERB_SERVER_PORT. The _SERVER_ variables are for the SERVER (the Reverb daemon itself) and the others are for the CLIENT (people connecting to your application).