Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/podboy/docsify-docker
- Owner: podboy
- License: mit
- Created: 2024-06-13T10:22:22.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-06-13T10:52:16.000Z (5 months ago)
- Last Synced: 2024-06-13T13:30:32.517Z (5 months ago)
- Language: Makefile
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```