Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 741 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 741 Bytes

docsify docker

Build Docsify Docker Image.

Introduction

Docsify turns one or more Markdown files into a Website, with no build process required.

The image is created by and maintained by zoumingzhe.

Usage

docker pull docker.io/mingzhebaosheng/docsify:latest -p 3000:3000 -v $(pwd):/docs

docker-compose:

version: '3'

services:
  app:
    container_name: docsify
    image: docker.io/mingzhebaosheng/docsify:latest
    privileged: true
    user: ${HOST_USER_ID:-0}:${HOST_GROUP_ID:-0}
    ports:
      - ${APP_PORT:-3000}:3000
    volumes:
      - ./tests:/docs