mirror of
https://github.com/go-shiori/shiori.git
synced 2026-04-25 14:35:52 +03:00
[GH-ISSUE #243] How to setup Shiori on a Raspberry Pi #180
Labels
No labels
component:backend
component:builds
component:builds
component:extension
component:frontend
component:readability
database
database:mysql
database:postgres
database:sqlite
feature:ebooks
github_actions
good first issue
hacktoberfest
note:duplicate?
note:fixed?
note:out-of-scope?
os:windows
priority:high
priority:low
pull-request
resolution:as-intended
resolution:cant-reproduce
resolution:duplicate
resolution:fixed
resolution:wontfix
tag:TBD
tag:big-task
tag:help-wanted
tag:huge-data
tag:meta
tag:more-info
tag:next
tag:no-stale
tag:requires-migrations
tag:research
tag:security 🛡️
tag:stale
tag:waiting-for-assignee
type:bug
type:documentation
type:enhancement
type:meta
type:ux
user:cli
user:web
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/shiori#180
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @szethh on GitHub (Apr 22, 2020).
Original GitHub issue: https://github.com/go-shiori/shiori/issues/243
How can I install in a Raspberry Pi?
I've tried building from source using Go. No luck. I also tried building the dockerfile provided, as well as this modification by 5hay. Neither worked.
Does anyone know how to install it on Raspbian?
@NoverNobida commented on GitHub (Apr 22, 2020):
Maybe you can pull docker images(such as
radhifadlillah/shiori) directly?@szethh commented on GitHub (Apr 22, 2020):
So I tried to pull the image with
docker pull radhifadlillah/shioriand then run it withdocker run --publish 80:80 --name shiori radhifadlillah/shiori, but it returnsstandard_init_linux.go:211: exec user process caused "exec format error"When running
docker ps -ait shows that the last command was/usr/bin/dumb-init -- /usr/local/bin/shiori serve.@Pixtriks commented on GitHub (Apr 22, 2020):
Yeah that's because the image has only been built for amd64. You can build it yourself using the Dockerfile which will result in an arm image.
@szethh commented on GitHub (Apr 23, 2020):
I've already tried that. Not working :/
@veverkap commented on GitHub (May 5, 2020):
I've also tried to build locally on a Pi 4 32bit using the Dockerfile and I get this error:
@microcreators commented on GitHub (May 5, 2020):
I have built it on arm7 (RPi3). A standalone bin. What's wrong?
@veverkap commented on GitHub (May 5, 2020):
I'm trying to build using the Dockerfile - I'm not compiling directly on the RPI - I don't even have go installed on the PI
@microcreators commented on GitHub (May 5, 2020):
Apologies, can't help with docker. But for @MateoPeri , you need a newer go version than in raspbian repos (assuming you use it). After that, building wen smooth. I'm on
go1.14.1 linux/armAlso:
https://github.com/go-shiori/shiori/issues/234#issue-586315408
@lapwat commented on GitHub (Aug 11, 2020):
Try to replace the Dockerfile with this one:
Build and run:
It should build for Raspberry and be available at
http://localhost:4444@clach04 commented on GitHub (Aug 16, 2020):
I have some notes in #268 too
@tiagosvf commented on GitHub (Oct 8, 2020):
@lapwat
Running image built from that Dockerfile gives me
@lapwat commented on GitHub (Oct 12, 2020):
@tiagosvf
I thought it would work but it is not possible apparently: https://github.com/go-shiori/shiori/issues/254#issuecomment-670203877
@theryecatcher commented on GitHub (Dec 6, 2020):
Is this still an issue I have a fully functioning interface on RPi4 (arm64v8 running Ubuntu - but I don't think that matters). Didn't do anything just built the Dockerfile on the Pi and it was up.
@tiagosvf commented on GitHub (Dec 9, 2020):
@theryecatcher
There haven't been any commits since my last answer so this is still an issue
@jcm4atx commented on GitHub (Jan 19, 2021):
I'm running without any issues on my Pi. I used the Go installation, not Docker.
I recommend adding this line to your
.bash_aliasesfile.alias shiori='/home/pi/go/src/github.com/go-shiori/shiori/shiori'@atsai1220 commented on GitHub (Feb 12, 2021):
This image worked for me on my rpi4.
malitov/rpi-shiori@bonnebulle commented on GitHub (Dec 26, 2022):
It's amazing making it running on Raspberry !
Do anybody here know if https://hub.docker.com/r/malitov/rpi-shiori is up to date ?
Thanks