2021-11-13 21:51:33 +00:00
|
|
|
# Linkding
|
|
|
|
- Looks very similar to pinboard
|
|
|
|
- Very simple and fast
|
|
|
|
- nice dark theme
|
|
|
|
- Firefox & Chrome extensions for adding bookmarks
|
|
|
|
|
|
|
|
- [Github repo](https://github.com/sissbruecker/linkding/)
|
|
|
|
- [Demo](https://demo.linkding.link/login/?next=/bookmarks)
|
|
|
|
|
|
|
|
![Screenshot](linkding.png)
|
|
|
|
|
|
|
|
## docker-compose.yml
|
|
|
|
```yml
|
|
|
|
---
|
|
|
|
version: '3.3'
|
|
|
|
services:
|
|
|
|
linkding:
|
|
|
|
image: sissbruecker/linkding:latest
|
|
|
|
container_name: linkding
|
|
|
|
restart: unless-stopped
|
|
|
|
ports:
|
|
|
|
- 3123:9090
|
|
|
|
volumes:
|
|
|
|
- ./data:/etc/linkding/data
|
|
|
|
```
|
2021-11-13 23:02:00 +00:00
|
|
|
|
|
|
|
Once it starts, create admin user:
|
|
|
|
```sh
|
|
|
|
docker-compose exec linkding python manage.py createsuperuser --username=joe --email=joe@example.com
|
|
|
|
```
|
2022-03-04 21:10:00 +00:00
|
|
|
|
|
|
|
## Tips & Tricks
|
|
|
|
Change password for a user
|
|
|
|
```sh
|
|
|
|
docker-compose exec linkding python manage.py changepassword <username>
|
|
|
|
```
|