Skip to content

Latest commit

 

History

History

json-server

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

json-server

alpine:edge-based dockerization of json-server

The source code for this image is hosted on GitHub in the backplane/conex repo.

Usage

Interactive

json_server() {
  docker run \
    --rm \
    --init \
    --interactive \
    --tty \
    --volume "$(pwd):/work" \
    --publish "3000:3000" \
    "backplane/json-server" \
    --host 0.0.0.0 \
    "$@"
}