add laravel echo server

This commit is contained in:
Mirko
2017-05-27 15:24:50 +02:00
parent f296a39bf5
commit da60b32a04
5 changed files with 64 additions and 0 deletions

View File

@ -566,6 +566,7 @@ services:
- proxy2
### Jenkins ###################################################
jenkins:
build: ./jenkins
environment:
@ -581,6 +582,19 @@ services:
- frontend
- backend
### Laravel Echo Server #######################################
laravel-echo-server:
build:
context: ./laravel-echo-server
volumes:
- ./laravel-echo-server/laravel-echo-server.json:/app/laravel-echo-server.json:ro
ports:
- "${LARAVEL_ECHO_SERVER_PORT}:6001"
links:
- redis
networks:
- frontend
- backend
### Networks Setup ############################################