Skip to content

Commit 96d9efd

Browse files
committed
add shlink & uptime-kuma
1 parent c3c53db commit 96d9efd

File tree

4 files changed

+52
-0
lines changed

4 files changed

+52
-0
lines changed

shlink/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
shlink
2+
======
3+
4+
[shlink][1] is the definitive self-hosted URL shortener.
5+
Keep control over all your shortened URLs, by serving them under your own
6+
domains, using this simple yet powerful tool.

shlink/docker-compose.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
version: "3.8"
2+
3+
services:
4+
5+
shlink:
6+
image: shlinkio/shlink:stable
7+
ports:
8+
- "8080:8080"
9+
environment:
10+
- DEFAULT_DOMAIN=shlink.easypi.duckdns.org
11+
- USE_HTTPS=true
12+
- GEOLITE_LICENSE_KEY=kjh23ljkbndskj345
13+
- DB_DRIVER=postgres
14+
- DB_HOST=postgres
15+
- DB_USER=shlink
16+
- DB_PASSWORD=shlink
17+
depends_on:
18+
- postgres
19+
restart: unless-stopped
20+
21+
postgres:
22+
image: postgres:alpine
23+
ports:
24+
- "5432:5432"
25+
volumes:
26+
- ./data:/var/lib/postgresql/data
27+
environment:
28+
- POSTGRES_USER=shlink
29+
- POSTGRES_PASSWORD=shlink
30+
- POSTGRES_DB=shlink
31+
restart: unless-stopped

uptime-kuma/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
uptime-kuma
2+
===========
3+
4+
[uptime-kuma][1] is a self-hosted monitoring tool like "Uptime Robot".
5+
6+
[1]: https://github.com/louislam/uptime-kuma

uptime-kuma/docker-compose.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: "3.8"
2+
services:
3+
uptime-kuma:
4+
image: louislam/uptime-kuma
5+
ports:
6+
- "3001:3001"
7+
volumes:
8+
- ./data:/app/data
9+
restart: unless-stopped

0 commit comments

Comments
 (0)