Replies: 3 comments 2 replies
-
By me it was wrong platform (armv7 x arm64). Be sure that you are using arm64 (f.e. Librelec's docker downloads armv7 so you have to enforce to download arm64) |
Beta Was this translation helpful? Give feedback.
-
Try to force to use arm64 using |
Beta Was this translation helpful? Give feedback.
-
don't work... export DOCKER_DEFAULT_PLATFORM=linux/arm64docker pull bbernhard/signal-cli-rest-api:latest@sha256:659f7f356d87a893c5d3d1260a5c70847c81f58256c896e23d05d37e215e5e03 docker.io/bbernhard/signal-cli-rest-api@sha256:659f7f356d87a893c5d3d1260a5c70847c81f58256c896e23d05d37e215e5e03: Pulling from bbernhard/signal-cli-rest-api2378679266ac: Pull complete export DOCKER_DEFAULT_PLATFORM=linux/arm64docker run -d --name signal-api --restart=always -p 8080:8080 -v $HOME/.local/share/signal-cli:/home/.local/share/signal-cli -e 'MODE=native' bbernhard/signal-cli-rest-api:latest@sha256:659f7f356d87a893c5d3d1260a5c70847c81f58256c896e23d05d37e215e5e039b531060e4c4b79ba2d4683e51e56158a3bd6752153f2bd65e3029f7dd189317 docker ps -aCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES docker ps -aCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES docker ps -aCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES docker logs signal-apinull |
Beta Was this translation helpful? Give feedback.
-
Hello,
I'm start the docker with this command on my raspberry
docker run --platform linux/arm64 -d --name signal-api --restart=always -p 8080:8080 -v $HOME/.local/share/signal-cli:/home/.local/share/signal-cli -e 'MODE=normal' bbernhard/signal-cli-rest-api
i have a picture with this link: http://localhost:8080/v1/qrcodelink?device_name=signal-api
but when a send a message with this:
curl -X POST -H "Content-Type: application/json" 'http://localhost:8080/v2/send' -d '{"message": "Test via Signal API!", "number": "+336XXXXXXXX", "recipients": [ "+336XXXXXXXX" ]}'
i have this error :
"error":"Error loading state file for user +336XXXXXXXX: Incorrect file format: expected parameter username not found (InvalidObjectException)\n"}
i have the same result with this command line:
udo docker run -d --name signal-api --restart=always -p 8080:8080 -v $HOME/.local/share/signal-cli:/home/.local/share/signal-cli -e 'MODE=normal' bbernhard/signal-cli-rest-api
can you help me?
Beta Was this translation helpful? Give feedback.
All reactions