Skip to content

Commit 3940aa2

Browse files
authored
Merge pull request #1531 from dandi/enh-docker-compose
tests: update tests docker-compose with few changes from dandi-archive
2 parents fd3f5e6 + 114e6a7 commit 3940aa2

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
@@ -74,15 +74,15 @@ services:
7474
hard: 3000
7575

7676
minio:
77-
image: minio/minio:RELEASE.2022-04-12T06-55-35Z
77+
image: minio/minio:latest
7878
# When run with a TTY, minio prints credentials on startup
7979
tty: true
8080
command: ["server", "/data"]
8181
ports:
8282
- "127.0.0.1:9000:9000"
8383
environment:
84-
MINIO_ACCESS_KEY: minioAccessKey
85-
MINIO_SECRET_KEY: minioSecretKey
84+
MINIO_ROOT_USER: minioAccessKey
85+
MINIO_ROOT_PASSWORD: minioSecretKey
8686
healthcheck:
8787
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
8888
interval: 7s
@@ -94,6 +94,7 @@ services:
9494
POSTGRES_DB: django
9595
POSTGRES_PASSWORD: postgres
9696
image: postgres
97+
command: postgres -c log_lock_waits=on -c log_min_duration_statement=100
9798
expose:
9899
- "5432"
99100
healthcheck:

0 commit comments

Comments
 (0)