youtu_grpc/docker-compose.yaml
xiabin d04175ee7c
All checks were successful
Auth & User Management Service CI / build-services (app/douyin_ecpm_calculation_service/Dockerfile, douyin_ecpm_calculation_service, douyin_ecpm_calculation_service) (push) Successful in 31s
Auth & User Management Service CI / build-services (app/ranking_management/Dockerfile, ranking_management, ranking_management) (push) Successful in 36s
Auth & User Management Service CI / build-services (app/auth_service/Dockerfile, auth_service, auth_service) (push) Successful in 37s
Auth & User Management Service CI / build-services (app/user_management/Dockerfile, user_manager, user_management) (push) Successful in 38s
Auth & User Management Service CI / start-services (push) Successful in 2s
1
2025-02-11 14:51:08 +08:00

39 lines
745 B
YAML

version: "3"
services:
user:
image: user_manager
container_name: user
environment:
TZ: Asia/Shanghai
restart: always
network_mode: host
auth:
image: auth_service
container_name: auth
depends_on:
- user
environment:
TZ: Asia/Shanghai
restart: always
network_mode: host
douyin_ecpm_calculation:
image: douyin_ecpm_calculation_service
container_name: douyin_ecpm_calculation
depends_on:
- auth
environment:
TZ: Asia/Shanghai
restart: always
network_mode: host
ranking:
image: ranking_management
container_name: ranking
depends_on:
- auth
environment:
TZ: Asia/Shanghai
restart: always
network_mode: host