From d393c6fc4dba9b1b41818876b1c515d082120b82 Mon Sep 17 00:00:00 2001 From: Kim Gardner Date: Tue, 26 Jun 2018 15:35:46 -0400 Subject: [PATCH 1/2] Set versions to 4.5.0 instead of latest (#1708) --- docs/source/01-01-talk-quickstart.md | 2 +- docs/source/01-02-installation-from-docker.md | 8 ++++---- docs/source/plugins/overview.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/source/01-01-talk-quickstart.md b/docs/source/01-01-talk-quickstart.md index 7e2adb2fe..e231e5b78 100644 --- a/docs/source/01-01-talk-quickstart.md +++ b/docs/source/01-01-talk-quickstart.md @@ -48,7 +48,7 @@ be used to setup Talk: version: '2' services: talk: - image: coralproject/talk:latest + image: coralproject/talk:4.5.0 restart: always ports: - "3000:3000" diff --git a/docs/source/01-02-installation-from-docker.md b/docs/source/01-02-installation-from-docker.md index dbf43fb54..392059e8a 100644 --- a/docs/source/01-02-installation-from-docker.md +++ b/docs/source/01-02-installation-from-docker.md @@ -43,7 +43,7 @@ be used to setup Talk: version: '2' services: talk: - image: coralproject/talk:latest + image: coralproject/talk:4.5.0 restart: always ports: - "3000:3000" @@ -121,7 +121,7 @@ base installation with additional custom plugins. Images can be created with the most basic of `Dockerfile`'s: ```docker -FROM coralproject/talk:latest-onbuild +FROM coralproject/talk:4.5.0-onbuild ``` And running the following to build the docker image: @@ -153,7 +153,7 @@ your containerized infrastructure. The versioning of our Docker tags as well lets you do something like: ```docker -FROM coralproject/talk:4.0-onbuild +FROM coralproject/talk:4.5.0-onbuild ``` -Which would pin your image to `4.0` release's. \ No newline at end of file +Which would pin your image to `4.5.0` release's. diff --git a/docs/source/plugins/overview.md b/docs/source/plugins/overview.md index 046f4db87..f22d85732 100644 --- a/docs/source/plugins/overview.md +++ b/docs/source/plugins/overview.md @@ -109,7 +109,7 @@ If you deploy using Docker, you can extend from the `*-onbuild` image, an example `Dockerfile` for your project could be: ```Dockerfile -FROM coralproject/talk:latest-onbuild +FROM coralproject/talk:4.5.0-onbuild ``` Where the directory for your instance would contain a `plugins.json` file From ab3ceb151a436cac70a76d003d0b4a65f4514b05 Mon Sep 17 00:00:00 2001 From: Andrew Losowsky Date: Wed, 27 Jun 2018 17:57:23 -0500 Subject: [PATCH 2/2] Added Rich Text to checklist --- docs/source/01-05-pre-launch-checklist.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/source/01-05-pre-launch-checklist.md b/docs/source/01-05-pre-launch-checklist.md index 37099f23b..d30419e01 100644 --- a/docs/source/01-05-pre-launch-checklist.md +++ b/docs/source/01-05-pre-launch-checklist.md @@ -52,6 +52,10 @@ permalink: /pre-launch-checklist/ - See [Notifications](/talk/integrating/notifications/) +- [ ] Do you want to setup rich text (bold, italics, quotes)? + - Install [talk-plugin-rich-text](/talk/plugin/talk-plugin-rich-text) + + - [ ] Do you want to display comment counts? - Use the GraphQL [CommentCountQuery](https://docs.coralproject.net/talk/api/graphql/#CommentCountQuery) - Install [talk-plugin-deep-reply-count](/talk/plugin/talk-plugin-deep-reply-count) if necessary.