Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/podboy/directorylisterdocker
Build Directory Lister Docker Image.
https://github.com/podboy/directorylisterdocker
Last synced: about 6 hours ago
JSON representation
Build Directory Lister Docker Image.
- Host: GitHub
- URL: https://github.com/podboy/directorylisterdocker
- Owner: podboy
- License: mit
- Created: 2024-05-30T13:15:03.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-06-06T10:53:53.000Z (5 months ago)
- Last Synced: 2024-06-07T07:25:29.901Z (5 months ago)
- Language: Roff
- Homepage:
- Size: 7.83 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DirectoryListerDocker
Build Directory Lister Docker Image.
## Introduction
Directory Lister is the easiest way to expose the contents of any web-accessible folder for browsing and sharing.
- [View the demo](https://demo.directorylister.com)
- [Documentation](https://docs.directorylister.com)
- [GitHub](https://github.com/DirectoryLister/DirectoryLister)The image is created by and maintained by [zoumingzhe](https://github.com/zoumingzhe).
## Usage
```shell
docker pull docker.io/mingzhebaosheng/directory-lister:latest -p 8008:80 -v ./files:/var/www/html/files
```docker-compose:
```docker-compose
version: '3'services:
app:
container_name: directory-lister
image: docker.io/mingzhebaosheng/directory-lister:latest
privileged: true
user: ${HOST_USER_ID:-0}:${HOST_GROUP_ID:-0}
ports:
- ${APP_PORT:-8008}:80
volumes:
- ./files:/var/www/html/files
```