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