Skip to content

Commit 114e6a7

Browse files
committed
tests: update docker-compose with few changes from dandi-archive
- 855845303901bd17a53d6c784c6cc5e5c2b1e1e9 Wed Dec 21 16:49:05 2022 -0500 Add more detailed logging to development postgres - b3ba0e8ab15a54b6d592a84d5c155c3ed6ee0390 Mon Oct 3 18:30:30 2022 -0400 Unpin minio docker image and update env vars
1 parent 958adbe commit 114e6a7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

dandi/tests/data/dandiarchive-docker/docker-compose.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ services:
6969
DJANGO_DANDI_VALIDATION_JOB_INTERVAL: "5"
7070

7171
minio:
72-
image: minio/minio:RELEASE.2022-04-12T06-55-35Z
72+
image: minio/minio:latest
7373
# When run with a TTY, minio prints credentials on startup
7474
tty: true
7575
command: ["server", "/data"]
7676
ports:
7777
- "127.0.0.1:9000:9000"
7878
environment:
79-
MINIO_ACCESS_KEY: minioAccessKey
80-
MINIO_SECRET_KEY: minioSecretKey
79+
MINIO_ROOT_USER: minioAccessKey
80+
MINIO_ROOT_PASSWORD: minioSecretKey
8181
healthcheck:
8282
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
8383
interval: 7s
@@ -89,6 +89,7 @@ services:
8989
POSTGRES_DB: django
9090
POSTGRES_PASSWORD: postgres
9191
image: postgres
92+
command: postgres -c log_lock_waits=on -c log_min_duration_statement=100
9293
expose:
9394
- "5432"
9495
healthcheck:

0 commit comments

Comments
 (0)