Skip to content
This repository has been archived by the owner on May 4, 2021. It is now read-only.

Latest commit

 

History

History
25 lines (16 loc) · 544 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 544 Bytes

tutum-docker-slate

Usage

In your source documentation folder (which looks like this), create a Dockerfile with the following contents:

FROM tutum/slate

And a docker-compose.yml with the following contents:

version: "2"
services:
  slate:
    build: .
    ports:
     - "4567:4567"

Use Docker Compose to run it:

docker-compose up --build

Go to http://localhost:4567/ and you will see your new API beautiful documentation.