Skip to main content

Docker-Compose

version: '3.3'
services:
  fireshare:
    container_name: fireshare
    image: shaneisrael/fireshare:latest
    ports:
      - "8888:80"
    volumes:
      - /home/docker/fireshare_data:/data #change this to your folder location
      - /home/docker/fireshare_processed:/processed #change this to your folder location
      - /home/docker/fireshare_videos:/videos #change this to your folder location
    environment:
      - ADMIN_USERNAME=admin #please change this
      - ADMIN_PASSWORD=admin #please change this
      - SECRET_KEY=replace_this_with_some_random_string
      - MINUTES_BETWEEN_VIDEO_SCANS=1  #how often should the system scan?
      - PUID=998 #change this to match your server settings
      - PGID=100 #change this to match your server settings