Portainer Templates

Linkstack

Social

Self-hosted open-source Linktree alternative. LinkStack is a highly customizable link sharing platform with an intuitive, easy to use user interface.

Pulls: 1.0M
Stars: 20
User: julianprieber
Created: Apr 24, 2023
Updated: 18 days ago
Status: active
Type Kubernetes Platform linux Image linkstackorg/linkstack:latest Ports

8188:808190:443

Volumes

/htdocs : linkstack_data

Restart Policy unless-stopped Sourced Repo Env Vars

Europe/Athens=''[email protected]=''example.com=''example.com=''info=''256M=''8M=''

Installation

Via Portainer

  1. Ensure both Docker and Portainer are installed, and up-to-date
  2. Log into your Portainer web UI
  3. Under Settings → App Templates, paste the below URL
  4. Head to Home → App Templates, and the list of apps will show up
  5. Select the app you wish to deploy, fill in any config options, and hit Deploy

Template Import URL

https://raw.githubusercontent.com/Lissy93/portainer-templates/main/templates.json
Show Me demo

Via Docker Run

docker run -d \ 
  -p 8188:80 \
  -p 8190:443 \
  -e Europe/Athens=${Europe/Athens} \
  -e [email protected]=${[email protected]} \
  -e example.com=${example.com} \
  -e example.com=${example.com} \
  -e info=${info} \
  -e 256M=${256M} \
  -e 8M=${8M} \
  -v linkstack_data:/htdocs \
  --restart=unless-stopped \
  linkstackorg/linkstack:latest

Via Docker Compose

Save this file as docker-compose.yml and run docker-compose up -d
Use this only as a guide.

version: '3.8'
services:
  linkstack:
    image: linkstackorg/linkstack:latest
    ports:
      - '8188:80'
      - '8190:443'
    environment:
      Europe/Athens: ''
      [email protected]: ''
      example.com: ''
      info: ''
      256M: ''
      8M: ''
    volumes:
      - linkstack_data:/htdocs

Alternative Methods

For more installation options, see the Documentation in the GitHub repo

Container Documentation