Skip to content

Commit

Permalink
Removed previous password pass-in and replaced with password stdin. T…
Browse files Browse the repository at this point in the history
…his is a docker requirement and helps better secure passwords via piping in.
  • Loading branch information
cameroncaci committed Oct 3, 2023
1 parent b2a5734 commit 433b3db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
- checkout
- run:
name: Login to Docker Hub
command: docker login -u $DOCKER_USER -p $DOCKER_PASS
command: echo $DOCKER_PASS | docker login -u $DOCKER_USER --password-stdin

- run:
name: Build containers
Expand Down

0 comments on commit 433b3db

Please sign in to comment.