Simple HTTP file browser. Nothing else
299
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.
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
Content type
Image
Digest
sha256:1905ff526…
Size
54.6 MB
Last updated
about 4 years ago
docker pull kale5/http-file-browser