Skip to content

Commit c7dea14

Browse files
committed
add shiori
1 parent a32a649 commit c7dea14

File tree

3 files changed

+43
-1
lines changed

3 files changed

+43
-1
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,10 @@ docker compose up
133133
- [Ombi](examples/ombi) - Ombi is a tool that enables users to manage requests for movies and TV shows on their Plex server. It provides an easy-to-use interface for users to request new content, leave notes and report issues. Ombi also offers notification and newsletter features, making it easier for server owners to manage user requests and share new content updates.
134134
- [LibrePhotos](examples/librephotos) - A self-hosted open source photo management service, with face recognition, geolocation, and more.
135135
- [Chevereto](examples/chevereto) - Ultimate image sharing software. Create your very own personal image hosting website in just minutes.
136+
137+
### Bookmarks and Link Sharing
136138
- [Archivebox](examples/archivebox) - ArchiveBox is a powerful, self-hosted internet archiving solution to collect, save, and view websites offline.
139+
- [Shiori](examples/shiori) - Simple bookmark manager and website archiver built with Go.
137140

138141
### Document Management Systems (DMS)
139142
- [Paperless NGX](examples/paperless-ngx) - A community-supported supercharged version of paperless: scan, index and archive all your physical documents.
@@ -204,7 +207,6 @@ docker compose up
204207
- [Duplicati](examples/duplicati) - Duplicati is a backup client that securely stores encrypted, incremental, compressed remote backups of local files on cloud storage services and remote file servers.
205208
- [Duplicacy](examples/duplicacy) - A lock-free deduplication cloud backup tool.
206209
- [Syncthing](examples/syncthing) - Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers.
207-
- [Archivebox](examples/archivebox) - ArchiveBox is a powerful, self-hosted internet archiving solution to collect, save, and view websites offline.
208210

209211
### Wiki & Knowledge Base
210212
- [Bookstack](examples/bookstack) - BookStack is a free and open-source wiki software aimed for a simple, self-hosted, and easy-to-use platform.

examples/shiori/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# References
2+
3+
- https://github.com/nicholaswilde/docker-shiori
4+
- https://github.com/go-shiori/shiori
5+
6+
# Notes
7+
8+
Default login is `shiori:gopher`

examples/shiori/docker-compose.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
version: "2.1"
2+
3+
services:
4+
5+
shiori:
6+
image: nicholaswilde/shiori:latest
7+
container_name: shiori
8+
environment:
9+
- TZ=Europe/Berlin
10+
- PUID=1000
11+
- PGID=1000
12+
- SHIORI_DIR=/data
13+
expose:
14+
- 8080
15+
ports:
16+
- 8080:8080
17+
restart: unless-stopped
18+
volumes:
19+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/shiori/data:/data
20+
#networks:
21+
# - proxy
22+
#labels:
23+
# - traefik.enable=true
24+
# - traefik.docker.network=proxy
25+
# - traefik.http.routers.shiori.rule=Host(`shiori.example.com`)
26+
# - traefik.http.services.shiori.loadbalancer.server.port=8080
27+
# # Part for optional traefik middlewares
28+
# - traefik.http.routers.shiori.middlewares=local-ipwhitelist@file
29+
30+
#networks:
31+
# proxy:
32+
# external: true

0 commit comments

Comments
 (0)