Sign inSign up

kale5/http-file-browser

By kale5

Updated about 4 years ago

Simple HTTP file browser. Nothing else

Image
0

299

kale5/http-file-browser repository overview

HTTP-File-Browser

This is a simple to deploy http file browser, that you can use to present your files in a web browser. This can be deployed on a docker instance on an x86 machine. The reason I created this image is because this setup works with the Kodi media app for watching movies from a server hosting movie files.

How to Deploy

Docker Compose:

---
version: "2.1"
services:
  filebrowser:
    image: kale5/http-file-browser:latest
    container_name: media-file-browser
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London
    volumes:
      - /mnt/filesdirectory:/mydir/files
    ports:
      - 8080:80
    restart: unless-stopped

Then run:

docker-compose up -d

Docker CLI: Copy and Paste This:

docker run -d -p 8080:80 -e PGID=1000 -e PUID=1000 -e 'TZ=Europe/London' -v /mnt/directory:/mydir/files --restart unless-stopped kale5/http-file-browser:latest

Tag summary

Content type

Image

Digest

sha256:1905ff526

Size

54.6 MB

Last updated

about 4 years ago

docker pull kale5/http-file-browser