Skip to content

Korni22/docker-h5ai

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

h5ai

h5ai is a modern web server index. This docker image makes it trivially easy to spin up a webserver and start sharing your files through the web.

Usage

This docker image is available as a trusted build on the docker index, so there's no setup required. Using this image for the first time will start a download automatically. Further runs will be immediate, as the image will be cached locally.

The recommended way to run this container looks like this:

$ sudo docker run -it --rm -p 80:80 -v /your/data:/var/www korni22/docker-h5ai

You can also use docker-compose.yml to run this container

version: '2'

services:

  h5ai:
    image: korni22/docker-h5ai
    container_name: h5ai
    restart: always
    volumes:
      - "/your/data:/var/www"

You can now point your webbrowser to this URL:

http://localhost/

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 74.7%
  • Shell 25.3%