Skip to content

Commit

Permalink
Change env and bucket name using vars
Browse files Browse the repository at this point in the history
  • Loading branch information
fahminlb33 committed Aug 6, 2020
1 parent 5d5b12b commit 82d9428
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Expand Up @@ -15,12 +15,12 @@ services:
depends_on:
- minio
env_file:
- ./.env
- ./docker.env
entrypoint: >
/bin/sh -c "
/usr/bin/mc alias set minio http://localhost:9000 $${MINIO_ACCESS_KEY} $${MINIO_SECRET_KEY};
/usr/bin/mc mb minio/pdtache --ignore-existing;
/usr/bin/mc policy set public minio/pdtache
/usr/bin/mc mb minio/$${MINIO_BUCKET} --ignore-existing;
/usr/bin/mc policy set public minio/$${MINIO_BUCKET}
"
web:
Expand Down

0 comments on commit 82d9428

Please sign in to comment.