Skip to content

Commit

Permalink
Use dotenv for env keys
Browse files Browse the repository at this point in the history
  • Loading branch information
memochou1993 committed Jul 10, 2021
1 parent 2ac65c3 commit 96e5e82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,8 @@ SELENIUM_PORT=4444

MINIO_PORT=9000
MINIO_CONSOLE_PORT=9001
MINIO_ROOT_USER=laradock
MINIO_ROOT_PASSWORD=laradock

### ADMINER ###############################################

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -470,8 +470,8 @@ services:
- "${MINIO_PORT}:9000"
- "${MINIO_CONSOLE_PORT}:9001"
environment:
- MINIO_ROOT_USER=access
- MINIO_ROOT_PASSWORD=secretkey
- MINIO_ROOT_USER=${MINIO_ROOT_USER}
- MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD}
networks:
- frontend
- backend
Expand Down

0 comments on commit 96e5e82

Please sign in to comment.