1
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
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
This commit is contained in:
parent
a32690a8d0
commit
d04175ee7c
@ -44,4 +44,4 @@ jobs:
|
|||||||
docker-compose down --remove-orphans
|
docker-compose down --remove-orphans
|
||||||
docker-compose up -d --build
|
docker-compose up -d --build
|
||||||
env:
|
env:
|
||||||
COMPOSE_PROJECT_NAME: myapp_ci
|
COMPOSE_PROJECT_NAME: youtu_grpc
|
39
docker-compose.yaml
Normal file
39
docker-compose.yaml
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
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
|
Loading…
x
Reference in New Issue
Block a user