Skip to content

MFA Help #138

Answered by mrlt8
sohansolo asked this question in Q&A
Sep 20, 2021 · 1 comments · 1 reply
Discussion options

You must be logged in to vote

You'll need a way to pass your verification to the container.

To use the docker command, you'll need to open a new terminal window and run the command:

docker exec -it wyze-bridge sh -c 'echo "123456" > /tokens/mfa_token'

(replace "123456" with your code)
If you get something like "No such container", you can run docker ps and use the container id instead:

docker exec -it ff11aa3d4d5d sh -c 'echo "123456" > /tokens/mfa_token'

Or if you'd rather not deal with the commands, you could always add something like this to your docker compose:

environment:
    - [email protected]
     - WYZE_PASSWORD=password
volumes:
    - ./tokens:/tokens/

You can then create a file named mfa_token in …

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@sohansolo
Comment options

Answer selected by sohansolo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants