diff --git a/README.md b/README.md index 4f641b3..15613bb 100644 --- a/README.md +++ b/README.md @@ -43,14 +43,16 @@ So, without further ado, here's the current list: - [websync](https://furier.github.io/websync/) 🔗 - an rsync task manager, where tasks can be added, scheduled and maintained in a sane manner -# Blogging +# Blogging & CMS - [AnchorCMS](https://github.com/anchorcms/anchor-cms#installation) 🔗 +- [Bludit](https://www.bludit.com) 🔗 - Simple, Fast, Secure, Flat-File CMS. - [Ghost](https://ghost.org/docs/install/docker/) 🔗 +- [Grav](https://getgrav.org) 🔗 - modern open source flat-file CMS. - [Hugo](https://gohugo.io/) 🔗 - [Kirby](https://getkirby.com/) 🔗 - [Metalsmith](https://metalsmith.io/) 🔗 - [Pagekit](https://pagekit.com/docs/getting-started/installation) 🔗 -- [Pelican](https://docs.getpelican.com/en/stable/quickstart.html#installation) 🔗 +- [Pelican](https://docs.getpelican.com/en/stable/quickstart.html#installation) 🔗 - Static Site Generator. - [PostLeaf](https://www.postleaf.org/installing) 🔗 - [Textpattern](https://docs.textpattern.com/installation/) 🔗 - [WriteFreely](https://github.com/writeas/writefreely) 🔗 @@ -89,11 +91,22 @@ So, without further ado, here's the current list: - [Heimdall](https://github.com/linuxserver/Heimdall) 🔗 +# Database +- [baserow](https://baserow.io) 🔗 - Open source no-code database and [Airtable](https://airtable.com) alternative. +- [SeaTable](https://seatable.io/en/) 🔗 - Simple like Excel, powerful like a database (free up to 3 users). +- [Dataspread](https://dataspread.github.io) 🔗 - combines the intuitiveness and flexibility of spreadsheets and the scalability and power of databases. +- [Hue](https://docs.gethue.com/quickstart/) 🔗 - open source SQL Assistant for Databases. + + # Docker Managers - [Diun](apps/docker/diun.md) - [WatchTower](apps/docker/watch-tower.md) +# Document Managers +- [Papermerge](https://www.papermerge.com) 🔗 - document manager with tags & searches. +- [DocSpell](https://docspell.org/) 🔗 - simple document organizer. + # Download Managers - [Deluge](apps/downloads/deluge.md) - [qbittorrent](apps/downloads/qbit.md) @@ -131,6 +144,7 @@ So, without further ado, here's the current list: - [anonaddy.com](https://anonaddy.com/#pricing) 🔗 - [simplelogin.io](https://simplelogin.io/) 🔗 - [simplelogin.io github repo](https://github.com/simple-login/app) 🔗 + - [Forward Email](https://forwardemail.net/en) 🔗 - Unlimited email addresses, custom domain, catch-all, wildcard, and disposable aliases (has free and paid plans). - Tools - [verify domain for google](https://postmaster.google.com/managedomains) 🔗 - [remove IP from spam house](https://www.spamhaus.org/lookup/) 🔗 diff --git a/apps/photos/lychee.md b/apps/photos/lychee.md index f093b60..08e7735 100644 --- a/apps/photos/lychee.md +++ b/apps/photos/lychee.md @@ -18,7 +18,7 @@ This file is required to increase the upload size (from the default 20MB). Original can be found here: [default.conf](https://github.com/LycheeOrg/Lychee-Docker/blob/master/default.conf). This will increase the size to 1000MB (`upload_max_filesize` and `post_max_size`): -```conf +```nginx user www-data; worker_processes auto; daemon off; @@ -127,7 +127,7 @@ services: - ./lychee/conf:/conf - ./lychee/uploads:/uploads - ./lychee/sym:/sym - - ./nginx.conf:/etc/nginx/nginx.conf + - ./nginx.conf:/etc/nginx/nginx.conf environment: - PUID=1000 - PGID=1000 diff --git a/apps/project-mgmt/vikunja.md b/apps/project-mgmt/vikunja.md index 2e9c484..d04e305 100644 --- a/apps/project-mgmt/vikunja.md +++ b/apps/project-mgmt/vikunja.md @@ -1,13 +1,14 @@ # Vikujna -- poor and messy UI -- buggy (at the time of testing) but in active development +- very active development +- lots of features! +- UI looks better with every update 😄
- [Homepage](https://vikunja.io/) - [Git repo](https://kolaente.dev/vikunja/) -- [Demo](https://try.vikunja.io/login) +- [Demo](https://try.vikunja.io/login) (demo:demo) ## docker-compose.yml diff --git a/docker/get-started.md b/docker/get-started.md index 3a3ffe7..0061e4c 100644 --- a/docker/get-started.md +++ b/docker/get-started.md @@ -24,7 +24,7 @@ From: https://www.digitalocean.com/community/tutorials/how-to-install-and-use-do ```sh sudo apt-get remove docker-compose -sudo curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose +sudo curl -L "https://github.com/docker/compose/releases/download/1.29.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose sudo chmod +x /usr/local/bin/docker-compose sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose ```