This commit is contained in:
ddadmin 2025-11-26 15:28:17 +03:00
parent 4cc413920f
commit 1aa3e2bfd6
3 changed files with 18 additions and 5 deletions

5
.env
View File

@ -1,14 +1,13 @@
COMPOSE_PROJECT_NAME=staging
NETWORK=staging
FRONT_TAG=DD-4240-STORY
dotdot_tag=DDB-2137
dotdot_tag=release145
LMS_TAG=release145
DASHBORD_TAG=master
SIGNER_TAG=master
ADMIN_TAG=master
CABINET_TAG=release145
LANDINGTTL_TAG=DD-4236-STORY
LANDINGTTL_TAG=release145
CVIEW_TAG=master
MYSQL_PORT=0.0.0.0:33067

View File

@ -2,6 +2,7 @@ CONTAINER_NAME=php
APP_ENV=prod
APP_DEBUG=false
APP_SCHEME=https
APP_HOST=staging.dot-dot.ru
APP_LMS_HOST=staginglms.dot-dot.ru
APP_CARGO_CARRIER_HOST=stagingcabinet.dot-dot.ru

View File

@ -91,11 +91,24 @@ services:
user-trust:
<<: *defaults-php
command: sh -c 'while true; do echo run; ./bin/console messenger:consume UserTrust; sleep 60;done'
command: sh -c 'while true; do echo run; ./bin/console messenger:consume UserTrust; sleep 10;done'
auction:
<<: *defaults-php
command: sh -c 'while true; do echo run; ./bin/console app:auction:process; sleep 60;done'
command: sh -c 'while true; do echo run; ./bin/console app:auction:process; sleep 10;done'
sync-auctions:
<<: *defaults-php
command: ./bin/console messenger:consume SyncAuctions
sync-carriers:
<<: *defaults-php
command: ./bin/console messenger:consume SyncCarriers
sync-change-data:
<<: *defaults-php
command: ./bin/console messenger:consume SyncChangeData
static:
image: registry.dot-dot.ru/dot-dot-static:${dotdot_tag}