Documentation Request
Hi, thanks so much for this fantastic application, I absolutely love it.
I was following the instructions on https://pocket-id.org/docs/setup/data-export-import, and ran:
cat ./export.zip | docker compose run pocket-id ./pocket-id import --yes --path -.
This resulted in an error: the input device is not a TTY
Adding -T to the compose command fixed it. The command that worked for me was:
cat ./export.zip | docker compose run -T pocket-id ./pocket-id import --yes --path -
If this is generally applicable to others, it would be great to update the command so others don't have to run into this problem.
Documentation Request
Hi, thanks so much for this fantastic application, I absolutely love it.
I was following the instructions on https://pocket-id.org/docs/setup/data-export-import, and ran:
cat ./export.zip | docker compose run pocket-id ./pocket-id import --yes --path -.This resulted in an error:
the input device is not a TTYAdding
-Tto the compose command fixed it. The command that worked for me was:cat ./export.zip | docker compose run -T pocket-id ./pocket-id import --yes --path -If this is generally applicable to others, it would be great to update the command so others don't have to run into this problem.