Skip to content
/ web Public

A simplest web service to serve static files. 🎉

Notifications You must be signed in to change notification settings

kemokemo/web

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

web

A simplest web service to serve static files. 🎉

Usage

build manually

## build and execute.
go build && ./web

## open 'http://localhost:8080' via browser

docker run

This tool serves the /app/public directory in the container. Please bind your public directory.

docker run --mount type=bind,source="$(pwd)"/public,target=/app/public,readonly -d -p 8080:8080 kemokemo/web:v0.0.1