Skip to content

huffmanks/echo-link

Repository files navigation

EchoLink

Screenshot of EchoLink interface.

A self-hosted client app for Linkding, designed for a fast, clean and modern bookmarking experience across your devices.

Features

  • Clean, responsive interface.
  • Seamless integration with Linkding API.
  • Bookmark search, filtering and organization.
  • Mobile-friendly and optimized for quick access.
  • Self-hosted and privacy-focused.

Usage

docker-compose.yml

services:
  linkding:
    image: sissbruecker/linkding:latest
    container_name: linkding
    ports:
      - "9090:9090"
    volumes:
      - ./data:/etc/linkding/data
    environment:
      LD_SUPERUSER_NAME: ${LD_SUPERUSER_NAME}
      LD_SUPERUSER_PASSWORD: ${LD_SUPERUSER_PASSWORD}
      LD_CSRF_TRUSTED_ORIGINS: ${LD_CSRF_TRUSTED_ORIGINS}
      LD_USE_X_FORWARDED_HOST: "true"
    restart: unless-stopped
  echo-link:
    image: huffmanks/echo-link:latest
    container_name: echo-link
    ports:
      - "${APP_PORT}:${APP_PORT}"
    environment:
      APP_PORT: ${APP_PORT}
      LINKDING_CONTAINER_URL: ${LINKDING_CONTAINER_URL}
    depends_on:
      - linkding
    restart: unless-stopped

.env

APP_PORT=3002
LINKDING_CONTAINER_URL=http://linkding:9090
LD_SUPERUSER_NAME=
LD_SUPERUSER_PASSWORD=
LD_CSRF_TRUSTED_ORIGINS=http://localhost:3002,https://echo.lan.domain.com

Start container

docker compose up -d

Open web UI

open http://localhost:3002

About

Self-hosted client app for Linkding.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors