Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/podboy/docsify-docker

Build Docsify Docker Image.
https://github.com/podboy/docsify-docker

Last synced: about 6 hours ago
JSON representation

Build Docsify Docker Image.

Awesome Lists containing this project

README

        

# docsify docker

Build Docsify Docker Image.

## Introduction

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

- [Documentation](https://docsify.js.org/#/)
- [GitHub](https://github.com/docsifyjs/docsify/)

The image is created by and maintained by [zoumingzhe](https://github.com/zoumingzhe).

## Usage

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

docker-compose:

```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
```