Skip to content

Commit

Permalink
Use hard-coded variables for docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
tnagorra committed Apr 15, 2024
1 parent 46bdda8 commit 09e7040
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env.test
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ NEXTAUTH_URL=http://localhost:3000

RESOURCES_S3_BASE_URL=localhost
RESOURCES_S3_PORT=9000
RESOURCES_S3_ACCESS_KEY=user
RESOURCES_S3_ACCESS_KEY=username
RESOURCES_S3_SECRET_KEY=password
RESOURCES_S3_BUCKET_NAME=resources
RESOURCES_S3_BASE_PUBLIC_URL=http://localhost:9000
Expand Down
4 changes: 2 additions & 2 deletions docker-compose-test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ services:
entrypoint: sh
command: -c 'mkdir -p /data/resources && minio server /data --console-address ":9001"'
environment:
MINIO_ROOT_USER: ${RESOURCES_S3_ACCESS_KEY}
MINIO_ROOT_PASSWORD: ${RESOURCES_S3_SECRET_KEY}
MINIO_ROOT_USER: username
MINIO_ROOT_PASSWORD: password
ports:
- 9000:9000
- 9001:9001

0 comments on commit 09e7040

Please sign in to comment.