Skip to content

Quick Start

Prerequisites

Before you begin, make sure you have Docker installed on your system.

Installation

  1. Create a new directory for Slink and navigate to it:

    Terminal window
    mkdir slink-app && cd slink-app
  2. Run the following docker command to start the Slink application:

    Terminal window
    docker run -d \
    --name slink \
    -p 3000:3000 \
    -v ./slink/var/data:/app/var/data \
    -v ./slink/images:/app/slink/images \
    -e ORIGIN=https://your-domain.com \
    -e USER_APPROVAL_REQUIRED=false \
    anirdev/slink:latest
  3. Open your browser and navigate to https://your-domain.com:3000/profile/signup to create a new account.

  4. (Optional) Grant yourself admin access by running the following command:

    Terminal window
    docker exec -it slink slink user:grant:role --email=<user-email> ROLE_ADMIN
  5. Login to the Slink application and start uploading images.