* 'master' of https://github.com/tborychowski/self-hosted-cookbook:
  Create FUNDING.yml
  Update komga.md
  Update README.md
This commit is contained in:
Tomasz Borychowski 2020-12-18 15:52:08 +00:00
commit 17c31b510d
3 changed files with 25 additions and 12 deletions

12
.github/FUNDING.yml vendored Normal file
View File

@ -0,0 +1,12 @@
# These are supported funding model platforms
github: tborychowski # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: tborychowski # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: ['paypal.me/tborychowski', 'buymeacoff.ee/tborychowski'] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

View File

@ -189,6 +189,7 @@ So, without further ado, here's the current list:
- [Notifiers by service](apps/notifications/notifiers-by-service.md) - comparison table - [Notifiers by service](apps/notifications/notifiers-by-service.md) - comparison table
- [Pushover](apps/notifications/pushover.md) - [Pushover](apps/notifications/pushover.md)
- [Synology-sms-relay](apps/notifications/synology-sms-relay.md) - [Synology-sms-relay](apps/notifications/synology-sms-relay.md)
- [Synology-notifications](https://github.com/ryancurrah/synology-notifications) 🔗 - similar to the above - works with Slack (and potentially Discord)
### Other ### Other

View File

@ -16,18 +16,18 @@ Probably the best self-hosted comic books reader.
version: '3.3' version: '3.3'
services: services:
komga: komga:
image: gotson/komga image: gotson/komga
container_name: komga container_name: komga
restart: unless-stopped restart: unless-stopped
user: "1000:1000" user: "1000:1000"
environment: environment:
- KOMGA_LIBRARIES_SCAN_DIRECTORY_EXCLUSIONS=#recycle,@eaDir - KOMGA_LIBRARIES_SCAN_DIRECTORY_EXCLUSIONS=#recycle,@eaDir
ports: ports:
- 3020:8080 - 3020:8080
volumes: volumes:
- ./data:/config - ./data:/config
- ./books:/books - ./books:/books
- /etc/timezone:/etc/timezone:ro - /etc/timezone:/etc/timezone:ro
``` ```