157 lines
4.2 KiB
YAML
157 lines
4.2 KiB
YAML
services:
|
|
api:
|
|
image: jhumanj/opnform-api:latest
|
|
container_name: opnform-api
|
|
volumes:
|
|
- opnform_storage:/usr/share/nginx/html/storage:rw
|
|
environment:
|
|
APP_ENV: production
|
|
# Database settings
|
|
DB_HOST: db
|
|
REDIS_HOST: redis
|
|
DB_DATABASE: ${DB_DATABASE:-forge}
|
|
DB_USERNAME: ${DB_USERNAME:-forge}
|
|
DB_PASSWORD: ${DB_PASSWORD:-forge}
|
|
DB_CONNECTION: ${DB_CONNECTION:-pgsql}
|
|
# PHP Configuration
|
|
PHP_MEMORY_LIMIT: "1G"
|
|
PHP_MAX_EXECUTION_TIME: "600"
|
|
PHP_UPLOAD_MAX_FILESIZE: "64M"
|
|
PHP_POST_MAX_SIZE: "64M"
|
|
env_file:
|
|
- ./api/.env
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
redis:
|
|
condition: service_healthy
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pgrep php-fpm > /dev/null || exit 1"]
|
|
interval: 30s
|
|
timeout: 15s
|
|
retries: 3
|
|
start_period: 90s
|
|
restart: unless-stopped
|
|
|
|
api-nginx:
|
|
image: nginx:alpine
|
|
container_name: opnform-api-nginx
|
|
volumes:
|
|
- ./docker/api-nginx.conf:/etc/nginx/nginx.conf:ro
|
|
- opnform_storage:/usr/share/nginx/html/storage:ro
|
|
ports:
|
|
- "0.0.0.0:7654:80" # API on port 7654 - accessible from any IP
|
|
depends_on:
|
|
api:
|
|
condition: service_started
|
|
restart: unless-stopped
|
|
|
|
api-worker:
|
|
image: jhumanj/opnform-api:latest
|
|
container_name: opnform-api-worker
|
|
command: ["php", "artisan", "queue:work"]
|
|
volumes:
|
|
- opnform_storage:/usr/share/nginx/html/storage:rw
|
|
environment:
|
|
APP_ENV: production
|
|
# Database settings
|
|
DB_HOST: db
|
|
REDIS_HOST: redis
|
|
DB_DATABASE: ${DB_DATABASE:-forge}
|
|
DB_USERNAME: ${DB_USERNAME:-forge}
|
|
DB_PASSWORD: ${DB_PASSWORD:-forge}
|
|
DB_CONNECTION: ${DB_CONNECTION:-pgsql}
|
|
# PHP Configuration
|
|
PHP_MEMORY_LIMIT: "1G"
|
|
PHP_MAX_EXECUTION_TIME: "600"
|
|
PHP_UPLOAD_MAX_FILESIZE: "64M"
|
|
PHP_POST_MAX_SIZE: "64M"
|
|
env_file:
|
|
- ./api/.env
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
redis:
|
|
condition: service_healthy
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pgrep -f 'php artisan queue:work' > /dev/null || exit 1"]
|
|
interval: 60s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 30s
|
|
|
|
api-scheduler:
|
|
image: jhumanj/opnform-api:latest
|
|
container_name: opnform-api-scheduler
|
|
command: ["php", "artisan", "schedule:work"]
|
|
volumes:
|
|
- opnform_storage:/usr/share/nginx/html/storage:rw
|
|
environment:
|
|
APP_ENV: production
|
|
# Database settings
|
|
DB_HOST: db
|
|
REDIS_HOST: redis
|
|
DB_DATABASE: ${DB_DATABASE:-forge}
|
|
DB_USERNAME: ${DB_USERNAME:-forge}
|
|
DB_PASSWORD: ${DB_PASSWORD:-forge}
|
|
DB_CONNECTION: ${DB_CONNECTION:-pgsql}
|
|
# PHP Configuration
|
|
PHP_MEMORY_LIMIT: "1G"
|
|
PHP_MAX_EXECUTION_TIME: "600"
|
|
PHP_UPLOAD_MAX_FILESIZE: "64M"
|
|
PHP_POST_MAX_SIZE: "64M"
|
|
env_file:
|
|
- ./api/.env
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
redis:
|
|
condition: service_healthy
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "php /usr/share/nginx/html/artisan app:scheduler-status --mode=check --max-minutes=3 || exit 1"]
|
|
interval: 60s
|
|
timeout: 30s
|
|
retries: 3
|
|
start_period: 70s
|
|
|
|
ui:
|
|
image: jhumanj/opnform-client:latest
|
|
container_name: opnform-client
|
|
ports:
|
|
- "0.0.0.0:7655:3000" # UI on port 7655 - accessible from any IP
|
|
env_file:
|
|
- ./client/.env
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "wget --spider -q http://localhost:3000/login || exit 1"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 45s
|
|
restart: unless-stopped
|
|
|
|
redis:
|
|
image: redis:7
|
|
container_name: opnform-redis
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "redis-cli ping | grep PONG"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
|
|
db:
|
|
image: postgres:16
|
|
container_name: opnform-db
|
|
environment:
|
|
POSTGRES_DB: ${DB_DATABASE:-forge}
|
|
POSTGRES_USER: ${DB_USERNAME:-forge}
|
|
POSTGRES_PASSWORD: ${DB_PASSWORD:-forge}
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U ${DB_USERNAME:-forge}"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
volumes:
|
|
- postgres-data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
postgres-data:
|
|
opnform_storage:
|