-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
63 lines (60 loc) · 2.08 KB
/
docker-compose.yaml
File metadata and controls
63 lines (60 loc) · 2.08 KB
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
57
58
59
60
61
62
63
services:
buggregator:
build:
context: .
dockerfile: Dockerfile
ports:
- "${HTTP_PORT:-8000}:8000" # HTTP + WebSocket + Frontend
- "${SMTP_PORT:-1025}:1025" # SMTP
- "${VAR_DUMPER_PORT:-9912}:9912" # VarDumper
- "${MONOLOG_PORT:-9913}:9913" # Monolog
volumes:
- ../frontend/dist:/app/frontend/dist:ro # Mount local frontend build for development
environment:
FRONTEND_DIR: /app/frontend/dist # Serve from mounted volume instead of embedded
networks:
- buggregator
# Laravel demo app with all integrations pre-configured
examples:
image: ghcr.io/buggregator/examples:1.7.1
depends_on:
- buggregator
ports:
- "${EXAMPLES_PORT:-8080}:8000"
environment:
APP_ENV: production
APP_KEY: base64:kMvf1mHFIuCf+ZqMiId7yo6v4oKtjuWqnlxJTWsWv7k=
APP_URL: http://localhost:${EXAMPLES_PORT:-8080}
LOG_LEVEL: debug
BROADCAST_DRIVER: log
CACHE_DRIVER: array
QUEUE_CONNECTION: sync
DB_CONNECTION: sqlite
DB_DATABASE: /app/database/db.sqlite
# Buggregator integrations — all pointing to the Go server
BUGGREGATOR_URL: http://buggregator:8000
MAIL_HOST: buggregator
MAIL_PORT: 1025
MAIL_ENCRYPTION: null
MAIL_FROM_ADDRESS: sender@example.com
MAIL_FROM_NAME: "Demo App"
RAY_HOST: ray@buggregator
RAY_PORT: 8000
VAR_DUMPER_SERVER: buggregator:9912
SENTRY_LARAVEL_DSN: http://sentry@buggregator:8000/default
SENTRY_TRACES_SAMPLE_RATE: "1.0"
LOG_SOCKET_URL: buggregator:9913
INSPECTOR_URL: http://inspector@buggregator:8000
INSPECTOR_API_KEY: test
PROFILER_ENDPOINT: http://profiler@buggregator:8000
HTTP_DUMP_ENDPOINT: http://http-dump@buggregator:8000
SMS_ENDPOINT: http://buggregator:8000/sms
volumes:
- ../examples/app:/app/app:ro
- ../examples/routes:/app/routes:ro
- ../examples/resources:/app/resources:ro
- ../examples/config/sentry.php:/app/config/sentry.php:ro
networks:
- buggregator
networks:
buggregator: