shiori icon indicating copy to clipboard operation
shiori copied to clipboard

Wallabag import script impossible to execute

Open crawfordlong opened this issue 1 year ago • 1 comments

Data

  • Shiori version: I believe it is 1.5.4 (docker)
  • Database Engine: n/a
  • Operating system: ubuntu
  • CLI/Web interface/Web Extension: n/a

Describe the bug / actual behavior

Documentation references a wallabag import bash script to import a wallabag json archive. The docker container is built without bash (i.e., docker exec -it shiori /bin/sh works but /bin/bash does not). The import script is therefore impossible to execute in a docker deployment.

Expected behavior

docker exec -it shiori /bin/bash then ./$scriptname works to import wallabag json archive.

To Reproduce

Steps to reproduce the behavior:

  1. On the host docker exec -it shiori /bin/bash (fails)
  2. On the host docker exec -it shiori /bin/sh (works)
  3. ./$scriptname fails because bash isn't available (I believe the script name is wallabag2shiori, but I can't confirm that where I am right now)

crawfordlong avatar Mar 20 '23 13:03 crawfordlong