Fireshare
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
/data : /portainer/Files/AppData/Config/fireshare/data
/processed : /portainer/Files/AppData/Config/fireshare/processed
/videos : /portainer/Files/AppData/Config/fireshare/videos
unless-stopped
Sourced
Repo
Env Vars
ADMIN_USERNAME=fireadmin
ADMIN_PASSWORD=firepwd
SECRET_KEY=replace_this_with_some_random_string0x0
MINUTES_BETWEEN_VIDEO_SCANS=1
PUID=998
PGID=100
Installation
Via Portainer
- Ensure both Docker and Portainer are installed, and up-to-date
- Log into your Portainer web UI
- Under Settings → App Templates, paste the below URL
- Head to Home → App Templates, and the list of apps will show up
- 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
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