Skip to content

Commit

Permalink
Adjust readme with new setup methods, add deploystack config
Browse files Browse the repository at this point in the history
  • Loading branch information
Kovah committed Jan 31, 2025
1 parent f1a7e4d commit 15d989e
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 3 deletions.
32 changes: 32 additions & 0 deletions .deploystack/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
version: "3"

services:

# --- MariaDB
db:
image: docker.io/library/mariadb:11.2
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=${DB_PASSWORD}
- MYSQL_USER=${DB_USERNAME}
- MYSQL_PASSWORD=${DB_PASSWORD}
- MYSQL_DATABASE=${DB_DATABASE}
volumes:
- db:/var/lib/mysql

# --- LinkAce Image with PHP and nginx
app:
image: docker.io/linkace/linkace
restart: unless-stopped
depends_on:
- db
ports:
- "0.0.0.0:80:80"
volumes:
- ./backups:/app/storage/app/backups
- linkace_logs:/app/storage/logs

volumes:
linkace_logs:
db:
driver: local
3 changes: 3 additions & 0 deletions .deploystack/env
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
DB_PASSWORD="ChangeThisToASecurePassword!"
DB_USERNAME="linkace"
DB_DATABASE=linkace
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<p align="center"><b>Your self-hosted tool for effortlessly archiving, organizing, and sharing your favorite web links.</b></p>

<p align="center">
<a href="https://twitter.com/LinkAceApp"><img src="https://img.shields.io/badge/X.com%2FLinkAceApp-black" alt="Follow LinkAce on X.com"></a>
<a href="https://mastodon.social/@linkace"><img src="https://img.shields.io/badge/%40linkace%40mastodon.social-6364ff" alt="Follow LinkAce on Mastodon"></a>
<a href="https://x.com/LinkAceApp"><img src="https://img.shields.io/badge/X.com%2FLinkAceApp-black" alt="Follow LinkAce on X.com"></a>
<a href="https://github.com/Kovah/LinkAce/releases"><img src="https://img.shields.io/github/v/release/kovah/linkace?label=Latest%20Release" alt="Latest Release"></a>
<a href="https://opensource.org/licenses/GPL-3.0"><img src="https://img.shields.io/github/license/kovah/linkace.svg" alt="License"></a>
</p>
Expand Down Expand Up @@ -64,8 +64,10 @@ More screenshots of the app and further details about the features can be found

LinkAce provides multiple ways of installing it on your server. The complete documentation for all installation methods can be found [**in the wiki**](https://www.linkace.org/docs/v2/setup/).

* [Setup with Docker](https://www.linkace.org/docs/v2/setup/setup-with-docker/) (_recommended_)
* [Setup without Docker](https://www.linkace.org/docs/v2/setup/setup-without-docker/)
* [Setup with Docker](https://www.linkace.org/docs/v2/setup/setup-with-docker/)
* [Setup without Docker](https://www.linkace.org/docs/v2/setup/setup-with-php/)
* [One-Click Deployment to the Cloud](https://www.linkace.org/docs/v2/setup/one-click-deploy/)
* [Setup with Kubernetes](https://www.linkace.org/docs/v2/setup/setup-to-k8s/) (Beta)
* [Official managed Hosting](https://hosting.linkace.org) (_Beta Waitlist_)

&nbsp;
Expand Down

0 comments on commit 15d989e

Please sign in to comment.