We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e2ff5f commit 02cfcc4Copy full SHA for 02cfcc4
docs/basic-usage/sail.md
@@ -0,0 +1,24 @@
1
+---
2
+title: Laravel Sail
3
+order: 5
4
5
+
6
+# Run in Laravel Sail
7
8
+To be able to use Laravel Websockets in Sail, you should just forward the port:
9
10
+```yaml
11
+# For more information: https://laravel.com/docs/sail
12
+version: '3'
13
+services:
14
+ laravel.test:
15
+ build:
16
+ context: ./vendor/laravel/sail/runtimes/8.0
17
+ dockerfile: Dockerfile
18
+ args:
19
+ WWWGROUP: '${WWWGROUP}'
20
+ image: sail-8.0/app
21
+ ports:
22
+ - '${APP_PORT:-80}:80'
23
+ - '${LARAVEL_WEBSOCKETS_PORT:-6001}:${LARAVEL_WEBSOCKETS_PORT:-6001}'
24
+```
0 commit comments