add readeck

This commit is contained in:
L4RM4ND 2024-06-04 10:36:35 +02:00
parent 30eb6fdd9d
commit 2cdc41718b
3 changed files with 29 additions and 0 deletions

View File

@ -245,6 +245,7 @@ Digital [archiving](https://en.wikipedia.org/wiki/Archival_science) and [preserv
- [Archivebox](examples/archivebox) - ArchiveBox is a powerful, self-hosted internet archiving solution to collect, save, and view websites offline.
- [Shiori](examples/shiori) - Simple bookmark manager and website archiver built with Go.
- [Readeck](examples/readeck) - Readeck is a simple web application that lets you save the precious readable content of web pages you like and want to keep forever.
### Document Management

View File

@ -0,0 +1,3 @@
# References
- https://codeberg.org/readeck/readeck

View File

@ -0,0 +1,25 @@
services:
readeck:
image: codeberg.org/readeck/readeck:latest
container_name: readeck
restart: unless-stopped
ports:
- 8000:8000/tcp
expose:
- 8000
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/readeck:/readeck
#networks:
# - proxy
#labels:
# - traefik.enable=true
# - traefik.docker.network=proxy
# - traefik.http.routers.readeck.rule=Host(`readeck.example.com`)
# - traefik.http.services.readeck.loadbalancer.server.port=8000
# # Optional part for traefik middlewares
# - traefik.http.routers.readeck.middlewares=local-ipwhitelist@file
#networks:
# proxy:
# external: true