Portainer Templates

Fireshare

Multimedia

Fireshare: Share your game clips, videos, or other media via unique links.

Pulls: 161k
Stars: 4
User: shaneisrael
Created: May 24, 2022
Updated: 7 months ago
Status: active
Type Kubernetes Platform linux Image shaneisrael/fireshare:latest Ports

8888:80

Volumes

/data : /portainer/Files/AppData/Config/fireshare/data /processed : /portainer/Files/AppData/Config/fireshare/processed /videos : /portainer/Files/AppData/Config/fireshare/videos

Restart Policy unless-stopped Sourced Repo Env Vars

ADMIN_USERNAME=fireadminADMIN_PASSWORD=firepwdSECRET_KEY=replace_this_with_some_random_string0x0MINUTES_BETWEEN_VIDEO_SCANS=1PUID=998PGID=100

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 8888:80 \
  -e ADMIN_USERNAME=${ADMIN_USERNAME} \
  -e ADMIN_PASSWORD=${ADMIN_PASSWORD} \
  -e SECRET_KEY=${SECRET_KEY} \
  -e MINUTES_BETWEEN_VIDEO_SCANS=${MINUTES_BETWEEN_VIDEO_SCANS} \
  -e PUID=${PUID} \
  -e PGID=${PGID} \
  -v /portainer/Files/AppData/Config/fireshare/data:/data \
  -v /portainer/Files/AppData/Config/fireshare/processed:/processed \
  -v /portainer/Files/AppData/Config/fireshare/videos:/videos \
  --restart=unless-stopped \
  shaneisrael/fireshare: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:
  fireshare:
    image: shaneisrael/fireshare:latest
    ports:
      - '8888:80'
    environment:
      ADMIN_USERNAME: ''
      ADMIN_PASSWORD: ''
      SECRET_KEY: ''
      MINUTES_BETWEEN_VIDEO_SCANS: ''
      PUID: ''
      PGID: ''
    volumes:
      - /portainer/Files/AppData/Config/fireshare/data:/data
      - /portainer/Files/AppData/Config/fireshare/processed:/processed
      - /portainer/Files/AppData/Config/fireshare/videos:/videos

Alternative Methods

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

Container Documentation