major claude changes
This commit is contained in:
@@ -10,7 +10,6 @@ services:
|
||||
ports:
|
||||
- '9611:80'
|
||||
|
||||
|
||||
backend_office_local:
|
||||
restart: always
|
||||
build:
|
||||
@@ -18,8 +17,13 @@ services:
|
||||
dockerfile: Dockerfile.local
|
||||
ports:
|
||||
- '9610:80'
|
||||
|
||||
|
||||
environment:
|
||||
- MODE=LOCAL
|
||||
- POSTGRES_USERNAME=${POSTGRES_USERNAME}
|
||||
- POSTGRES_PW=${POSTGRES_PW}
|
||||
- POSTGRES_SERVER=${POSTGRES_SERVER}
|
||||
- POSTGRES_DBNAME=${POSTGRES_DBNAME}
|
||||
- SECRET_KEY=${SECRET_KEY}
|
||||
|
||||
money_service_local:
|
||||
restart: on-failure
|
||||
@@ -28,11 +32,14 @@ services:
|
||||
dockerfile: Dockerfile.local
|
||||
environment:
|
||||
- MODE=LOCAL
|
||||
- POSTGRES_USERNAME=${POSTGRES_USERNAME}
|
||||
- POSTGRES_PW=${POSTGRES_PW}
|
||||
- POSTGRES_SERVER=${POSTGRES_SERVER}
|
||||
- POSTGRES_DBNAME=${POSTGRES_DBNAME}
|
||||
ports:
|
||||
- '9613:8000'
|
||||
command: 'uvicorn main:app --reload --host 0.0.0.0 --port 8000'
|
||||
|
||||
|
||||
auto_local:
|
||||
restart: on-failure
|
||||
build:
|
||||
@@ -40,9 +47,14 @@ services:
|
||||
dockerfile: Dockerfile.local
|
||||
ports:
|
||||
- '9614:8000'
|
||||
environment:
|
||||
- MODE=LOCAL
|
||||
- POSTGRES_USERNAME=${POSTGRES_USERNAME}
|
||||
- POSTGRES_PW=${POSTGRES_PW}
|
||||
- POSTGRES_SERVER=${POSTGRES_SERVER}
|
||||
- POSTGRES_DBNAME=${POSTGRES_DBNAME}
|
||||
command: 'uvicorn main:app --reload --host 0.0.0.0 --port 8000'
|
||||
|
||||
|
||||
authorize_local:
|
||||
restart: on-failure
|
||||
build:
|
||||
@@ -52,9 +64,16 @@ services:
|
||||
- ../eamco_authorize:/app
|
||||
ports:
|
||||
- '9616:8000'
|
||||
environment:
|
||||
- MODE=LOCAL
|
||||
- AUTHORIZE_API_LOGIN_ID=${AUTHORIZE_API_LOGIN_ID}
|
||||
- AUTHORIZE_TRANSACTION_KEY=${AUTHORIZE_TRANSACTION_KEY}
|
||||
- POSTGRES_USERNAME=${POSTGRES_USERNAME}
|
||||
- POSTGRES_PW=${POSTGRES_PW}
|
||||
- POSTGRES_SERVER=${POSTGRES_SERVER}
|
||||
- POSTGRES_DBNAME=${POSTGRES_DBNAME}
|
||||
command: 'uvicorn app.main:app --reload --host 0.0.0.0 --port 8000'
|
||||
|
||||
|
||||
voipms_local:
|
||||
restart: on-failure
|
||||
build:
|
||||
@@ -64,9 +83,20 @@ services:
|
||||
- ../eamco_voipms:/app
|
||||
ports:
|
||||
- '9617:8000'
|
||||
environment:
|
||||
- MODE=LOCAL
|
||||
- POSTGRES_USERNAME=${POSTGRES_USERNAME}
|
||||
- POSTGRES_PW=${POSTGRES_PW}
|
||||
- POSTGRES_SERVER=${POSTGRES_SERVER}
|
||||
- POSTGRES_DBNAME=${POSTGRES_DBNAME}
|
||||
- VOIPMS_API_USERNAME=${VOIPMS_API_USERNAME}
|
||||
- VOIPMS_API_PASSWORD=${VOIPMS_API_PASSWORD}
|
||||
- TARGET_DID=${TARGET_DID}
|
||||
- TARGET_SIP_ACCOUNT=${TARGET_SIP_ACCOUNT}
|
||||
- TARGET_CELLPHONE_1=${TARGET_CELLPHONE_1}
|
||||
- TARGET_CELLPHONE_2=${TARGET_CELLPHONE_2}
|
||||
command: 'uvicorn app.main:app --reload --host 0.0.0.0 --port 8000'
|
||||
|
||||
|
||||
address_checker_local:
|
||||
restart: on-failure
|
||||
build:
|
||||
|
||||
Reference in New Issue
Block a user