Skip to content

Commit 9e05737

Browse files
committed
add linkding
1 parent 3a56c7b commit 9e05737

File tree

4 files changed

+29
-0
lines changed

4 files changed

+29
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ To get an explaination of each app, run the following command:
3434
| fastapi | amd64, arm64 | Standalone | None |
3535
| fooocus | amd64, arm64 | Standalone | nVidia |
3636
| joomla | amd64, arm64 | Stack | None |
37+
| linkding | amd64, arm64 | Standalone | None |
3738
| mongodb | amd64, arm64 | Standalone | None |
3839
| nextcloud | amd64, arm64 | Standalone | None |
3940
| nginx | amd64, arm64 | Standalone | None |

linkding/.env

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
SERVICE_PORT=9000
2+
# Username of the initial superuser to create, leave empty to not create one
3+
LD_SUPERUSER_NAME=test
4+
# Password for the initial superuser, leave empty to disable credentials authentication and rely on proxy authentication instead
5+
LD_SUPERUSER_PASSWORD=test

linkding/README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Linkding
2+
3+
linkding is a bookmark manager that you can host yourself. It's designed be to be minimal, fast, and easy to set up.
4+
5+
More info [here](https://github.com/sissbruecker/linkding)
6+
7+
## Config
8+
9+
Username: test (Change from .env file)
10+
Password: test (Change from .env file)

linkding/docker-compose.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: '3'
2+
3+
services:
4+
linkding:
5+
container_name: linkding
6+
image: sissbruecker/linkding:latest
7+
ports:
8+
- "${SERVICE_PORT}:9090"
9+
volumes:
10+
- "./data:/etc/linkding/data"
11+
env_file:
12+
- .env
13+
restart: unless-stopped

0 commit comments

Comments
 (0)