update
All checks were successful
/ build-services (app/auth/Dockerfile, auth, auth) (push) Successful in 1m8s
/ build-services (app/ecpm/Dockerfile, ecpm, ecpm) (push) Successful in 34s
/ build-services (app/ranking/Dockerfile, ranking, ranking) (push) Successful in 39s
/ build-services (app/user/Dockerfile, user, user) (push) Successful in 36s
/ start-services (push) Successful in 1s

This commit is contained in:
xiabin 2025-02-14 11:04:25 +08:00
parent 53a7d70bc9
commit 435fd2f37b
2 changed files with 7 additions and 7 deletions

View File

@ -10,7 +10,7 @@ jobs:
include: include:
- service: user - service: user
dockerfile: app/user/Dockerfile dockerfile: app/user/Dockerfile
image: user_manager image: user
- service: ranking - service: ranking
dockerfile: app/ranking/Dockerfile dockerfile: app/ranking/Dockerfile
image: ranking image: ranking

View File

@ -1,7 +1,7 @@
version: "3" version: "3"
services: services:
user: user:
image: user_manager image: user
container_name: user container_name: user
environment: environment:
TZ: Asia/Shanghai TZ: Asia/Shanghai
@ -9,7 +9,7 @@ services:
network_mode: host network_mode: host
auth: auth:
image: auth_service image: auth
container_name: auth container_name: auth
depends_on: depends_on:
- user - user
@ -18,9 +18,9 @@ services:
restart: always restart: always
network_mode: host network_mode: host
douyin_ecpm_calculation: ecpm:
image: douyin_ecpm_calculation_service image: ecpm
container_name: douyin_ecpm_calculation container_name: ecpm
depends_on: depends_on:
- auth - auth
environment: environment:
@ -29,7 +29,7 @@ services:
network_mode: host network_mode: host
ranking: ranking:
image: ranking_management image: ranking
container_name: ranking container_name: ranking
depends_on: depends_on:
- auth - auth