-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature Request] Docker Container for Web? #179
Comments
We don't have a docker file for Sorayomi web but you could use Sorayomi web here directly without installing |
The problem what I'm hosting the tachidesk server on localhost which doesn't have https. So I just ended up writing my own docker file FROM alpine as builder
RUN apk add unzip curl jq
RUN tag=$(curl -s https://api.github.com/repos/Suwayomi/Tachidesk-Sorayomi/tags | jq -r '.[0].name') && \
curl -LO https://github.com/Suwayomi/Tachidesk-Sorayomi/releases/download/$tag/tachidesk-sorayomi-$tag-web.zip && \
unzip tachidesk-sorayomi-$tag-web.zip -d ./static
FROM nginx:stable-alpine-slim
COPY --from=builder ./static /usr/share/nginx/html This docker file just pulls the latest release of Sorayomi and serves it on port 80 via nginx. |
Just created a public docker container on dockerhub. |
Will it pull latest release from GitHub? |
else we could create a docker image directly from GitHub actions, you could raise a PR if you are interested |
You could write your workflow in the above file use |
The problem is that there is no way to figure out when a release is published, so it would be nice if we could move this to this repository. |
Thats not completely true, releases have a latest tag (eg. https://github.com/Suwayomi/Tachidesk-Sorayomi/releases/latest) when you open it, it will reference the current latest version of the releases. Maybe use this instead of using the github api endpoint? |
PLEASE READ THIS
Is your feature request related to a problem? Please describe.
Are there any docker images for the web version of tachidesk sorayomi?
I prefer the web version of sorayomi over the default webUI provided with the tachidesk-server.
Describe the solution you'd like
Adding a docker container for the web version of sorayomi
Describe alternatives you've considered
The WebUI
Additional context
N/A
The text was updated successfully, but these errors were encountered: