File tree 4 files changed +52
-0
lines changed
4 files changed +52
-0
lines changed Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments