We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 37b6350 + 85f6dd8 commit 649d89dCopy full SHA for 649d89d
dandi/tests/data/dandiarchive-docker/docker-compose.yml
@@ -29,7 +29,11 @@ services:
29
DJANGO_MINIO_STORAGE_ENDPOINT: minio:9000
30
DJANGO_MINIO_STORAGE_SECRET_KEY: minioSecretKey
31
DJANGO_STORAGE_BUCKET_NAME: django-storage
32
- DJANGO_MINIO_STORAGE_MEDIA_URL: http://localhost:9000/django-storage
+ # The Minio URL needs to use 127.0.0.1 instead of localhost so that blob
33
+ # assets' "S3 URLs" will use 127.0.0.1, and thus tests that try to open
34
+ # these URLs via fsspec will not fail on systems where localhost is both
35
+ # 127.0.0.1 and ::1.
36
+ DJANGO_MINIO_STORAGE_MEDIA_URL: http://127.0.0.1:9000/django-storage
37
DJANGO_DANDI_SCHEMA_VERSION: ~
38
DJANGO_DANDI_WEB_APP_URL: http://localhost:8085
39
DJANGO_DANDI_API_URL: http://localhost:8000
0 commit comments