Skip to content

Commit

Permalink
Adds examples docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
butschster committed May 4, 2024
1 parent 6928bf3 commit 4706a34
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,46 @@ services:
networks:
- buggregator-network

buggregator-examples:
image: ghcr.io/buggregator/examples:latest
environment:
APP_ENV: production
APP_KEY: ${APP_KEY:-base64:kMvf1mHFIuCf+ZqMiId7yo6v4oKtjuWqnlxJTWsWv7k=}
BUGGREGATOR_URL: ${BUGGREGATOR_DEMO_URL:-http://buggregator.localhost}
LOG_LEVEL: debug
BROADCAST_DRIVER: log
CACHE_DRIVER: array
QUEUE_CONNECTION: sync
DB_CONNECTION: pgsql
DB_HOST: buggregator-pgsql
DB_DATABASE: examples
DB_USERNAME: homestead
DB_PASSWORD: secret
APP_URL: ${APP_URL:-http://examples.buggregator.localhost}
MAIL_HOST: buggregator-server
MAIL_PORT: 1025
MAIL_ENCRYPTION: null
MAIL_FROM_ADDRESS: sender@site.com
MAIL_FROM_NAME: sender
RAY_HOST: ray@buggregator-server
RAY_PORT: 8000
VAR_DUMPER_SERVER: buggregator-server:9912
SENTRY_LARAVEL_DSN: http://sentry@buggregator-server:8000/default
LOG_SOCKET_URL: buggregator-server:9913
LOG_SLACK_WEBHOOK_URL: http://buggregator-server:8000/slack
INSPECTOR_URL: http://inspector@buggregator-server:8000
INSPECTOR_API_KEY: test
PROFILER_ENDPOINT: http://profiler@buggregator-server:8000
labels:
- "traefik.enable=true"
- "traefik.http.routers.buggregator-examples.entrypoints=web"
- "traefik.http.routers.buggregator-examples.rule=Host(`examples.buggregator.localhost`)"
- "traefik.http.services.buggregator-examples.loadbalancer.server.port=8000"
depends_on:
- buggregator-pgsql
networks:
- buggregator-network

networks:
buggregator-network:
ipam:
Expand Down

0 comments on commit 4706a34

Please sign in to comment.