-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
56 lines (54 loc) · 1.46 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
version: '3'
services:
webhook:
image: "webhooksite/webhook.site"
# Enable build for development:
# build:
# dockerfile: Dockerfile
# context: ./
container_name: webhook
extra_hosts:
- 'host.docker.internal:host-gateway'
command: php artisan queue:work --daemon --tries=3 --timeout=10
ports:
- "8084:80"
environment:
- APP_ENV=dev
- APP_DEBUG=true
- APP_URL=http://localhost:8084
- APP_LOG=errorlog
- DB_CONNECTION=sqlite
- REDIS_HOST=redis
- BROADCAST_DRIVER=redis
- CACHE_DRIVER=redis
- QUEUE_DRIVER=redis
- ECHO_HOST_MODE=path
depends_on:
- redis
redis:
image: "redis:alpine"
laravel-echo-server:
image: "webhooksite/laravel-echo-server"
environment:
- LARAVEL_ECHO_SERVER_AUTH_HOST=http://webhook
- LARAVEL_ECHO_SERVER_HOST=0.0.0.0
- LARAVEL_ECHO_SERVER_PORT=6001
- ECHO_REDIS_PORT=6379
- ECHO_REDIS_HOSTNAME=redis
- ECHO_PROTOCOL=http
- ECHO_ALLOW_CORS=true
- ECHO_ALLOW_ORIGIN=*
- ECHO_ALLOW_METHODS=*
- ECHO_ALLOW_HEADERS=*
volumes:
- ./data:/usr/test
- ./data/laravel_handler.sh:/usr/test/laravel_handler.sh
command: "/usr/test/laravel_handler.sh"
ngrok:
image: ngrok/ngrok:latest
restart: unless-stopped
environment:
NGROK_AUTHTOKEN: '${NGROK_AUTHTOKEN}'
command: 'http --domain=${NGROK_DOMAIN} webhook:80'
ports:
- 2002:4040