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

tests: update tests docker-compose with few changes from dandi-archive #1531

Merged
merged 1 commit into from
Nov 23, 2024
Merged
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
7 changes: 4 additions & 3 deletions dandi/tests/data/dandiarchive-docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ services:
DJANGO_DANDI_VALIDATION_JOB_INTERVAL: "5"

minio:
image: minio/minio:RELEASE.2022-04-12T06-55-35Z
image: minio/minio:latest
# When run with a TTY, minio prints credentials on startup
tty: true
command: ["server", "/data"]
ports:
- "127.0.0.1:9000:9000"
environment:
MINIO_ACCESS_KEY: minioAccessKey
MINIO_SECRET_KEY: minioSecretKey
MINIO_ROOT_USER: minioAccessKey
MINIO_ROOT_PASSWORD: minioSecretKey
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 7s
Expand All @@ -89,6 +89,7 @@ services:
POSTGRES_DB: django
POSTGRES_PASSWORD: postgres
image: postgres
command: postgres -c log_lock_waits=on -c log_min_duration_statement=100
expose:
- "5432"
healthcheck:
Expand Down
Loading