diff --git a/build/docs/Dockerfile b/build/docs/Dockerfile index a56df06b..27ca474e 100644 --- a/build/docs/Dockerfile +++ b/build/docs/Dockerfile @@ -21,4 +21,4 @@ RUN go get github.com/apex/static/cmd/static-docs WORKDIR /docs -CMD [ "static-docs", "--in", "build/docs", "--out", "docs", "--theme", "gotenberg", "--title", "Gotenberg", "--subtitle", "A Docker-powered stateless API for converting HTML, Markdown and Office documents to PDF." ] \ No newline at end of file +CMD [ "static-docs", "--in", "build/docs/content", "--out", "docs", "--theme", "gotenberg", "--title", "Gotenberg", "--subtitle", "A Docker-powered stateless API for converting HTML, Markdown and Office documents to PDF." ] \ No newline at end of file diff --git a/build/docs/00-introduction.md b/build/docs/content/00-introduction.md similarity index 100% rename from build/docs/00-introduction.md rename to build/docs/content/00-introduction.md diff --git a/build/docs/01-install.md b/build/docs/content/01-install.md similarity index 100% rename from build/docs/01-install.md rename to build/docs/content/01-install.md diff --git a/build/docs/02-html.md b/build/docs/content/02-html.md similarity index 100% rename from build/docs/02-html.md rename to build/docs/content/02-html.md diff --git a/build/docs/03-markdown.md b/build/docs/content/03-markdown.md similarity index 100% rename from build/docs/03-markdown.md rename to build/docs/content/03-markdown.md diff --git a/build/docs/04-office.md b/build/docs/content/04-office.md similarity index 100% rename from build/docs/04-office.md rename to build/docs/content/04-office.md diff --git a/build/docs/05-merge.md b/build/docs/content/05-merge.md similarity index 100% rename from build/docs/05-merge.md rename to build/docs/content/05-merge.md diff --git a/build/docs/06-webhook.md b/build/docs/content/06-webhook.md similarity index 100% rename from build/docs/06-webhook.md rename to build/docs/content/06-webhook.md diff --git a/build/docs/07-scalability.md b/build/docs/content/07-scalability.md similarity index 100% rename from build/docs/07-scalability.md rename to build/docs/content/07-scalability.md diff --git a/build/docs/08-links.md b/build/docs/content/08-links.md similarity index 100% rename from build/docs/08-links.md rename to build/docs/content/08-links.md diff --git a/docs/index.html b/docs/index.html index 2a57c794..f45bac16 100755 --- a/docs/index.html +++ b/docs/index.html @@ -58,10 +58,6 @@ Links -
- -
- @@ -863,74 +859,6 @@ redirect a request to a Gotenberg container according to the round-robin strateg -
-

-

ARG GOLANG_VERSION

- -

FROM golang:${GOLANG_VERSION}-stretch

- -

|————————————————————————–

- -

| static

- -

|————————————————————————–

- -

|

- -

| Installs the static site anti-framework – general-purpose library,

- -

| purpose-built commands for various domains.

- -

|

- -

RUN go get github.com/apex/static/cmd/static-docs

- -

|————————————————————————–

- -

| Final touch

- -

|————————————————————————–

- -

|

- -

| Last instructions of this build.

- -

|

- -

WORKDIR /docs

- -

CMD [ “static-docs”, “–in”, “build/docs”, “–out”, “docs”, “–theme”, “gotenberg”, “–title”, “Gotenberg”, “–subtitle”, “A Docker-powered stateless API for converting HTML, Markdown and Office documents to PDF.” ]

- -
-