Files
eamco_deploy/unraid-docker-compose.yml
Edwin Eames 9d5c3c72f6 feat: add scraper service to all Docker environments
Add eamco_scraper container definitions for dev, local, prod, and
Unraid deployments on port 9519. Remove unused Authorize env_file
references from dev config. Include add_towns.sh helper script for
bootstrapping street reference data.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-08 17:54:29 -05:00

81 lines
1.8 KiB
YAML

version: '3.8'
services:
frontend_office_prod:
restart: on-failure
image: anekdotin/eamco-frontend_office_prod:latest
ports:
- '9511:80'
env_file:
- unraid-env
backend_office_prod:
restart: always
image: anekdotin/eamco-backend_office_prod:latest
ports:
- '9510:80'
env_file:
- unraid-env
money_service_prod:
restart: on-failure
image: anekdotin/eamco-money_service_prod:latest
ports:
- '9513:8000'
env_file:
- unraid-env
command: 'uvicorn main:app --host 0.0.0.0 --port 8000 --workers 2'
auto_prod:
restart: on-failure
image: anekdotin/eamco-auto_prod:latest
ports:
- '9514:8000'
env_file:
- unraid-env
command: 'uvicorn main:app --host 0.0.0.0 --port 8000 --workers 2'
service_prod:
restart: on-failure
image: anekdotin/eamco-service_prod:latest
ports:
- '9515:8000'
env_file:
- unraid-env
command: 'uvicorn main:app --host 0.0.0.0 --port 8000 --workers 2'
authorize_prod:
restart: on-failure
image: anekdotin/eamco-authorize_prod:latest
ports:
- '9516:8000'
env_file:
- unraid-env
command: 'uvicorn app.main:app --host 0.0.0.0 --port 8000 --workers 2'
voipms_prod:
restart: on-failure
image: anekdotin/eamco-voipms_prod:latest
ports:
- '9517:8000'
env_file:
- unraid-env
command: 'uvicorn app.main:app --host 0.0.0.0 --port 8000 --workers 2'
address_checker_prod:
restart: on-failure
image: anekdotin/eamco-address_checker_prod:latest
ports:
- '9518:8000'
env_file:
- unraid-env
scraper_prod:
restart: on-failure
image: anekdotin/eamco-scraper_prod:latest
ports:
- '9519:8000'
env_file:
- unraid-env
command: 'uvicorn app.main:app --host 0.0.0.0 --port 8000 --workers 2'