mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-30 15:31:12 +00:00
add readeck
This commit is contained in:
parent
30eb6fdd9d
commit
2cdc41718b
|
@ -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.
|
- [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.
|
- [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
|
### Document Management
|
||||||
|
|
||||||
|
|
3
examples/readeck/README.md
Normal file
3
examples/readeck/README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# References
|
||||||
|
|
||||||
|
- https://codeberg.org/readeck/readeck
|
25
examples/readeck/docker-compose.yml
Normal file
25
examples/readeck/docker-compose.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user