feat:Add the broadcast driver officially recommended by laravel

This commit is contained in:
Wuweiming 2022-04-29 14:21:10 +08:00
parent a2dd97674f
commit cd9542198c
2 changed files with 18 additions and 0 deletions

View File

@ -396,6 +396,17 @@ services:
networks:
- backend
### Soketi Server ##############################################
soketi:
build:
context: ./soketi
ports:
- "${SOKETI_PORT}:6001"
- "${SOKETI_METRICS_SERVER_PORT}:9601"
networks:
- frontend
- backend
### NGINX Server #########################################
nginx:
build:

7
soketi/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM quay.io/soketi/soketi:latest
LABEL maintainer="WuweiMing <wwm041544363@gmail.com>"
CMD ["node /app/bin/server.js start"]
EXPOSE 6001 9601