mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireCloud.git
synced 2026-05-31 00:04:27 +08:00
28 lines
810 B
Text
28 lines
810 B
Text
# Copy this file to docker-compose.override.yml and customize it to your needs.
|
|
# This is an example file only, and is NOT loaded by default.
|
|
|
|
services:
|
|
webapp:
|
|
ports:
|
|
- ${LOCAL_HTTP_PORT:-8099}:80
|
|
environment:
|
|
- XDEBUG_CONFIG=idekey=PHPSTORM start_with_request=true var_display_max_depth=-1 max_nesting_level=3000 client_host=172.17.0.1
|
|
- PHP_IDE_CONFIG=serverName=application.local
|
|
- XDEBUG_MODE=develop,debug,coverage
|
|
|
|
postgres:
|
|
ports:
|
|
- "${LOCAL_POSTGRES_PORT:-5432}:5432"
|
|
|
|
mailpit:
|
|
ports:
|
|
- "${LOCAL_MAILPIT_PORT:-8025}:8025"
|
|
|
|
prometheus:
|
|
ports:
|
|
- "${LOCAL_PROMETHEUS_PORT:-9090}:9090"
|
|
|
|
grafana:
|
|
ports:
|
|
- "${LOCAL_GRAFANA_PORT:-3000}:3000"
|
|
|