Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Warnings in Docker Compose #3120

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions e2e/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export ADMIN_UVICORN_NUM_WORKERS := 2
export ADMIN_UVICORN_PORT := 9081
export API_HF_JWT_ALGORITHM := EdDSA
export API_HF_JWT_PUBLIC_KEY_URL := https://hub-ci.huggingface.co/api/keys/jwt
export API_HF_JWT_ADDITIONAL_PUBLIC_KEYS :=
# ^ it's not tested in the e2e tests, but it's good to ensure we're able to fetch it at least.
export ADMIN_HF_TIMEOUT_SECONDS := 10
export API_HF_TIMEOUT_SECONDS := 10
Expand Down
3 changes: 3 additions & 0 deletions tools/docker-compose-dataset-viewer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ services:
ADMIN_HF_TIMEOUT_SECONDS: ${ADMIN_HF_TIMEOUT_SECONDS-0.2}
ADMIN_HF_WHOAMI_PATH: ${ADMIN_HF_WHOAMI_PATH-/api/whoami-v2}
ADMIN_MAX_AGE: ${ADMIN_MAX_AGE-10}
CACHED_ASSETS_BASE_URL:
ASSETS_BASE_URL:
DEV_NETWORK_MODE: ${DEV_NETWORK_MODE}
# prometheus
PROMETHEUS_MULTIPROC_DIR: ${PROMETHEUS_MULTIPROC_DIR-}
# uvicorn
Expand Down
5 changes: 5 additions & 0 deletions tools/docker-compose-dev-dataset-viewer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ services:
ADMIN_HF_TIMEOUT_SECONDS: ${ADMIN_HF_TIMEOUT_SECONDS-10.0}
ADMIN_HF_WHOAMI_PATH: ${ADMIN_HF_WHOAMI_PATH-/api/whoami-v2}
ADMIN_MAX_AGE: ${ADMIN_MAX_AGE-10}
API_HF_JWT_PUBLIC_KEY_URL: ${API_HF_JWT_PUBLIC_KEY_URL}
API_HF_JWT_ADDITIONAL_PUBLIC_KEYS: ${API_HF_JWT_ADDITIONAL_PUBLIC_KEYS}
CACHED_ASSETS_BASE_URL:
ASSETS_BASE_URL:
DEV_NETWORK_MODE: ${DEV_NETWORK_MODE}
# prometheus
PROMETHEUS_MULTIPROC_DIR: ${PROMETHEUS_MULTIPROC_DIR-}
# uvicorn
Expand Down