From 9c97dc6dab558be469b7434ce1d3d0468ed5fb21 Mon Sep 17 00:00:00 2001 From: wataru Date: Mon, 19 Sep 2022 07:34:47 +0900 Subject: [PATCH] update --- demo/serverFastAPI.py | 2 +- start2.sh | 2 +- trainer/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/demo/serverFastAPI.py b/demo/serverFastAPI.py index 1400442b..7a7f55e3 100755 --- a/demo/serverFastAPI.py +++ b/demo/serverFastAPI.py @@ -142,4 +142,4 @@ def post_test(voice:VoiceModel): if __name__ == '__main__': logger.info('START APP') - uvicorn.run(f"{os.path.basename(__file__)[:-3]}:app", host="0.0.0.0", port=int(PORT), reload=True) + uvicorn.run(f"{os.path.basename(__file__)[:-3]}:app", host="0.0.0.0", port=int(PORT), reload=True, log_level="info") diff --git a/start2.sh b/start2.sh index 832bb239..d70cd012 100644 --- a/start2.sh +++ b/start2.sh @@ -2,7 +2,7 @@ # 参考:https://programwiz.org/2022/03/22/how-to-write-shell-script-for-option-parsing/ -DOCKER_IMAGE=dannadori/voice-changer:20220919_043908 +DOCKER_IMAGE=dannadori/voice-changer:20220919_073405 TENSORBOARD_PORT=6006 VOICE_CHANGER_PORT=8080 diff --git a/trainer/Dockerfile b/trainer/Dockerfile index 081e88cd..0a857d95 100644 --- a/trainer/Dockerfile +++ b/trainer/Dockerfile @@ -1,4 +1,4 @@ -FROM dannadori/voice-changer-internal:20220919_060759 as front +FROM dannadori/voice-changer-internal:20220919_073236 as front FROM debian:bullseye-slim as base ARG DEBIAN_FRONTEND=noninteractive