This commit is contained in:
wataru 2022-09-19 07:34:47 +09:00
parent 0f413f9e5f
commit 9c97dc6dab
3 changed files with 3 additions and 3 deletions

View File

@ -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")

View File

@ -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

View File

@ -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