Refactor Docker Compose configurations and add Unraid support
- Update docker-compose files for dev, local, and prod environments - Improve service definitions and environment variable handling - Add Unraid-specific Docker Compose and environment files - Remove deprecated .env.example and dockercomposeforserver.yml - Streamline configuration management across environments
This commit is contained in:
71
unraid-docker-compose.yml
Normal file
71
unraid-docker-compose.yml
Normal file
@@ -0,0 +1,71 @@
|
||||
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
|
||||
Reference in New Issue
Block a user