Files
coolify/templates/compose/soketi-app-manager.yaml
Andras Bacsai 99530f1e9c Add soketi-app-manager configuration and update environment variable syntax
- Introduced soketi-app-manager service template with documentation, slogan, and logo.
- Updated environment variable definitions in soketi-app-manager.yaml to use parameter expansion for improved error handling.
2025-05-13 11:06:34 +02:00

32 lines
1.2 KiB
YAML

# documentation: https://github.com/rahulhaque/soketi-app-manager-filament
# slogan: Manage soketi websocket server and apps with ease.
# tags: soketi,websockets,app-manager,dashboard
# logo: svgs/soketi-app-manager.svg
# port: 8080
services:
soketi-app-manager:
image: ghcr.io/rahulhaque/soketi-app-manager-filament-alpine:latest
environment:
- SERVICE_FQDN_SOKETIAPPMANAGER_8080
- AUTORUN_ENABLED=true
- AUTORUN_LARAVEL_MIGRATION=${AUTORUN_LARAVEL_MIGRATION:-true}
- APP_DEBUG=${APP_DEBUG:-false}
- APP_URL=${SERVICE_FQDN_SOKETIAPPMANAGER:?}
- APP_KEY=${APP_KEY:?}
- DB_CONNECTION=${DB_CONNECTION:?}
- DB_HOST=${DB_HOST:?}
- DB_PORT=${DB_PORT:?}
- DB_DATABASE=${DB_DATABASE:?}
- DB_USERNAME=${DB_USERNAME:?}
- DB_PASSWORD=${DB_PASSWORD:?}
- PUSHER_HOST=${PUSHER_HOST:?}
- PUSHER_PORT=${PUSHER_PORT:?}
- PUSHER_SCHEME=${PUSHER_SCHEME:?}
- PUSHER_APP_CLUSTER=${PUSHER_APP_CLUSTER:?}
- SOKETI_DB_REDIS_USERNAME=${SOKETI_DB_REDIS_USERNAME:?}
- SOKETI_DB_REDIS_PASSWORD=${SOKETI_DB_REDIS_PASSWORD:?}
- METRICS_HOST=${METRICS_HOST:?}
healthcheck:
test: ["CMD", "php-fpm-healthcheck"]
start_period: 10s