this post was submitted on 13 Oct 2023
1 points (100.0% liked)
Self-Hosted Main
515 readers
1 users here now
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.
For Example
- Service: Dropbox - Alternative: Nextcloud
- Service: Google Reader - Alternative: Tiny Tiny RSS
- Service: Blogger - Alternative: WordPress
We welcome posts that include suggestions for good self-hosted alternatives to popular online services, how they are better, or how they give back control of your data. Also include hints and tips for less technical readers.
Useful Lists
- Awesome-Selfhosted List of Software
- Awesome-Sysadmin List of Software
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I had the exact same problem. I solved it by:
- Deleting the container and image
- Create a task in task scheduler with root user and with the following config
docker run -d \
--name=calibre-web \
-e PUID=1026 \
-e PGID=100 \
-e TZ=Europe/Lisbon \
-e DOCKER_MODS=ghcr.io/linuxserver/mods:universal-calibre \
-e OAUTHLIB_RELAX_TOKEN_SCOPE=1 \
-e TP_THEME=aquamarine \
-p 8083:8083 \
-v /volume1/docker/calibre-web:/config \
-v /volume1/docker/calibre/BibliotecaCalibre:/books \
--restart unless-stopped \
lscr.io/linuxserver/calibre-web
Replace PUID and PGID by your own
It will this time install flask and all necessary python modules. All your data and configs will be preserved