• Stars
    star
    1,547
  • Rank 29,035 (Top 0.6 %)
  • Language
    Shell
  • License
    MIT License
  • Created over 10 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Docker image for Discourse

Discourse Docker images

About

  • Docker is an open source project to pack, ship and run any Linux application in a lighter weight, faster container than a traditional virtual machine.

  • Docker makes it much easier to deploy a Discourse forum on your servers and keep it updated. For background, see Sam's blog post.

  • The templates and base image configure Discourse with the Discourse team's recommended optimal defaults.

Getting Started

The simplest way to get started is via the standalone template, which can be installed in 30 minutes or less. For detailed install instructions, see

https://github.com/discourse/discourse/blob/main/docs/INSTALL-cloud.md

Directory Structure

/cids

Contains container ids for currently running Docker containers. cids are Docker's "equivalent" of pids. Each container will have a unique git like hash.

/containers

This directory is for container definitions for your various Discourse containers. You are in charge of this directory, it ships empty.

/samples

Sample container definitions you may use to bootstrap your environment. You can copy templates from here into the containers directory.

/shared

Placeholder spot for shared volumes with various Discourse containers. You may elect to store certain persistent information outside of a container, in our case we keep various logfiles and upload directory outside. This allows you to rebuild containers easily without losing important information. Keeping uploads outside of the container allows you to share them between multiple web instances.

/templates

pups-managed templates you may use to bootstrap your environment.

/image

Dockerfiles for Discourse; see the README for further details.

The Docker repository will always contain the latest built version at: https://hub.docker.com/r/discourse/base/, you should not need to build the base image.

Launcher

The base directory contains a single bash script which is used to manage containers. You can use it to "bootstrap" a new container, enter, start, stop and destroy a container.

Usage: launcher COMMAND CONFIG [--skip-prereqs] [--docker-args STRING]
Commands:
    start:       Start/initialize a container
    stop:        Stop a running container
    restart:     Restart a container
    destroy:     Stop and remove a container
    enter:       Open a shell to run commands inside the container
    logs:        View the Docker logs for a container
    bootstrap:   Bootstrap a container for the config based on a template
    run:         Run the given command with the config in the context of the last bootstrapped image
    rebuild:     Rebuild a container (destroy old, bootstrap, start new)
    cleanup:     Remove all containers that have stopped for > 24 hours
    start-cmd:   Generate docker command used to start container

If the environment variable "SUPERVISED" is set to true, the container won't be detached, allowing a process monitoring tool to manage the restart behaviour of the container.

Container Configuration

The beginning of the container definition can contain the following "special" sections:

templates:

templates:
  - 'templates/cron.template.yml'
  - 'templates/postgres.template.yml'

This template is "composed" out of all these child templates, this allows for a very flexible configuration structure. Furthermore you may add specific hooks that extend the templates you reference.

expose:

expose:
  - '2222:22'
  - '127.0.0.1:20080:80'

Publish port 22 inside the container on port 2222 on ALL local host interfaces. In order to bind to only one interface, you may specify the host's IP address as ([<host_interface>:[host_port]])|(<host_port>):<container_port>[/udp] as defined in the docker port binding documentation. To expose a port without publishing it, specify only the port number (e.g., 80).

volumes:

volumes:
  - volume:
    host: /var/discourse/shared
    guest: /shared

Expose a directory inside the host to the container.

links:

links:
  - link:
    name: postgres
    alias: postgres

Links another container to the current container. This will add --link postgres:postgres to the options when running the container.

environment variables:

Setting environment variables to the current container.

env:
  DISCOURSE_DB_HOST: some-host
  DISCOURSE_DB_NAME: '{{config}}_discourse'

The above will add -e DISCOURSE_DB_HOST=some-host -e DISCOURSE_DB_NAME=app_discourse to the options when running the container.

labels:

labels:
  monitor: 'true'
  app_name: '{{config}}_discourse'

Add labels to the current container. The above will add --l monitor=true -l app_name=dev_discourse to the options when running the container

Upgrading Discourse

The Docker setup gives you multiple upgrade options:

  1. Use the front end at http://yoursite.com/admin/upgrade to upgrade an already running image.

  2. Create a new base image manually by running: ./launcher rebuild my_image

Single Container vs. Multiple Containers

The samples directory contains a standalone template. This template bundles all of the software required to run Discourse into a single container. The advantage is that it is easy.

The multiple container configuration setup is far more flexible and robust, however it is also more complicated to set up. A multiple container setup allows you to:

  • Minimize downtime when upgrading to new versions of Discourse. You can bootstrap new web processes while your site is running and only after it is built, switch the new image in.
  • Scale your forum to multiple servers.
  • Add servers for redundancy.
  • Have some required services (e.g. the database) run on beefier hardware.

If you want a multiple container setup, see the data.yml and web_only.yml templates in the samples directory. To ease this process, launcher will inject an env var called DISCOURSE_HOST_IP which will be available inside the image.

WARNING: In a multiple container configuration, make sure you setup iptables or some other firewall to protect various ports (for postgres/redis). On Ubuntu, install the ufw or iptables-persistent package to manage firewall rules.

Email

For a Discourse instance to function properly Email must be set up. Use the SMTP_URL env var to set your SMTP address, see sample templates for an example. The Docker image does not contain postfix, exim or another MTA, it was omitted because it is very tricky to set up correctly.

Troubleshooting

View the container logs: ./launcher logs my_container

Spawn a shell inside your container using ./launcher enter my_container. This is the most foolproof method if you have host root access.

If you see network errors trying to retrieve code from github.com or rubygems.org try again - sometimes there are temporary interruptions and a retry is all it takes.

Behind a proxy network with no direct access to the Internet? Add proxy information to the container environment by adding to the existing env block in the container.yml file:

env:
  …existing entries…
  HTTP_PROXY: http://proxyserver:port/
  http_proxy: http://proxyserver:port/
  HTTPS_PROXY: http://proxyserver:port/
  https_proxy: http://proxyserver:port/

Security

Directory permissions in Linux are UID/GID based, if your numeric IDs on the host do not match the IDs in the guest, permissions will mismatch. On clean installs you can ensure they are in sync by looking at /etc/passwd and /etc/group, the Discourse account will have UID 1000.

Advanced topics

License

MIT

More Repositories

1

discourse

A platform for community discussion. Free, open, simple.
Ruby
38,751
star
2

message_bus

A reliable and robust messaging bus for Ruby and Rack
Ruby
1,636
star
3

onebox

(DEPRECATED) A gem for turning URLs into website previews
Ruby
795
star
4

logster

Log viewer UI and framework for rack
Ruby
551
star
5

wp-discourse

WordPress plugin that lets you use Discourse as the community engine for a WordPress blog
PHP
507
star
6

prometheus_exporter

A framework for collecting and aggregating prometheus metrics
Ruby
486
star
7

mini_sql

a minimal, fast, safe sql executor
Ruby
374
star
8

discourse_api

Ruby API for Discourse
Ruby
260
star
9

DiscourseMobile

Discourse Mobile
JavaScript
221
star
10

rails_multisite

Multi tenancy for Rails applications
Ruby
216
star
11

mini_scheduler

Adds recurring jobs for Sidekiq
Ruby
169
star
12

discourse-solved

Allow accepted answers on topics
Ruby
158
star
13

pups

Simple yaml based bootstrapper for Linux machines
Ruby
151
star
14

discourse-adplugin

Official Discourse Advertising Plugin. Install & Start Serving Ads on Your Discourse Forum
JavaScript
120
star
15

discourse-topic-voting

Adds the ability for voting on a topic within a specified category in Discourse.
Ruby
111
star
16

rails_failover

Ruby
105
star
17

discourse-oauth2-basic

A basic OAuth2 plugin for use with Discourse
Ruby
103
star
18

mini_mime

minimal mime type library
Ruby
95
star
19

discourse-chat-integration

Ruby
89
star
20

all-the-plugins

Ruby
87
star
21

discourse-data-explorer

SQL Queries for admins in Discourse
Ruby
80
star
22

discourse-air

A modern theme with a dark mode option.
SCSS
73
star
23

docker_manager

Plugin for use with discourse docker image
Ruby
67
star
24

discourse-spoiler-alert

A plugin for discourse to hide spoilers behind the spoiler-alert jQuery plugin
JavaScript
61
star
25

discourse-whos-online

A plugin for Discourse which uses the messagebus to display a live list of active users
JavaScript
58
star
26

discourse-tagging

Tagging functionality for Discourse Forums
JavaScript
58
star
27

email_reply_trimmer

Library to trim replies from plain text email.
Ruby
56
star
28

discourse-translator

Ruby
50
star
29

discourse-calendar

Adds the ability to create a dynamic calendar in the first post of a topic.
Ruby
49
star
30

discourse-steam-login

Allows user authentication with discourse via the Steam user API
Ruby
48
star
31

discourse-activity-pub

Adds ActivityPub support to Discourse.
Ruby
48
star
32

material-design-stock-theme

SCSS
46
star
33

discourse-user-notes

Plugin for Staff users to create notes on users
Ruby
45
star
34

discourse-checklist

A simple checklist rendering plugin for discourse
Ruby
44
star
35

discourse-chat

Chat inside Discourse
44
star
36

discourse-math

Official MathJax support for Discourse
JavaScript
44
star
37

discourse-patreon

Enable syncronization between Discourse Groups and Patreon rewards
Ruby
43
star
38

discourse-assign

Plugin for assigning users to a topic
Ruby
43
star
39

discourse-push-notifications

Plugin for integrating Chrome and FireFox push notifications
39
star
40

discourse-algolia

A plugin for indexing and searching your Discourse with Algolia
JavaScript
39
star
41

discourse-cakeday

Show a birthday cake emoji beside the names of members on their join anniversary, or their actual birthday -- and a browsable directory of upcoming anniversaries / birthdays.
JavaScript
38
star
42

discourse-saml

Support for SAML in Discourse
Ruby
38
star
43

discourse_theme

CLI helper for developing Discourse themes
Ruby
37
star
44

discourse-ai

Ruby
37
star
45

discourse_api_docs

Discourse API Documentation
JavaScript
37
star
46

letter-avatars

Teeny tiny web service to generate letter-based avatars
Ruby
37
star
47

discourse-encrypt

A plugin that provides a secure communication channel through Discourse.
JavaScript
37
star
48

discourse-canned-replies

Adds a means to insert templates from the composer.
JavaScript
35
star
49

discourse-github

Ruby
33
star
50

discourse-openid-connect

Allows an OpenID Connect provider to be used as an authentication provider for Discourse
Ruby
32
star
51

discourse-sitemap

Generate XML sitemap for your Discourse forum.
Ruby
32
star
52

discourse-auth-proxy

An http proxy that uses the DiscourseConnect protocol to authenticate users
Go
31
star
53

discourse-brand-header

Brand header theme component for Discourse
HTML
31
star
54

install-rails

Install Rails
Shell
29
star
55

discourse-reactions

JavaScript
28
star
56

discourse-gamification

Ruby
27
star
57

discourse-slack-official

DEPRECATED: Official Slack integration for Discourse
Ruby
26
star
58

core

25
star
59

discourse-affiliate

Ruby
25
star
60

discourse-follow

A Discourse plugin that lets you follow other users.
Ruby
24
star
61

ember-route-template

JavaScript
24
star
62

discourse-simple-theme

Sam's simple discourse theme
SCSS
24
star
63

all-the-themes

Ruby
23
star
64

discourse-docs

JavaScript
22
star
65

discourse-custom-header-links

JavaScript
22
star
66

discourse-post-voting

Allows users to vote on posts within a topic
Ruby
21
star
67

discourse-kanban-theme

A Discourse theme component providing basic kanban-board functionality
JavaScript
21
star
68

DiscoTOC

A Discourse theme component that generates a table of contents for topics with one click
JavaScript
21
star
69

discourse-category-banners

JavaScript
20
star
70

discourse-zoom

Integrate Zoom events in Discourse.
Ruby
20
star
71

discourse-rss-polling

Ruby
19
star
72

discourse-bbcode-color

A Discourse Plugin to support BBCode color tags.
JavaScript
19
star
73

discourse-plugin-discord-auth

A Discourse plugin to login over Discord
Ruby
18
star
74

image-optimizer

JavaScript
18
star
75

discourse-jwt

Discourse Auth support for JSON Web Tokens (JWT)
Ruby
17
star
76

discourse-signatures

A Discourse Plugin to show user signatures below posts
Ruby
17
star
77

github_badges

DEPRECATED: GitHub Badges plugin
Ruby
16
star
78

discourse-tooltips

Show tooltips around Discourse on hover, including topic previews
JavaScript
15
star
79

discourse-perspective-api

Google Perspective API Plugin for Discourse
Ruby
15
star
80

discourse-zendesk-plugin

Official Zendesk Integration for Discourse
Ruby
15
star
81

discourse-code-review

This allows commits and pull requests to be imported to Discourse as topics and reviewed
Ruby
14
star
82

discourse-prometheus

Official Discourse Plugin for Prometheus Monitoring
Ruby
14
star
83

mattermost-css-hacks

A mattermost plugin we use to customize our CSS
JavaScript
14
star
84

Discourse-easy-footer

JavaScript
13
star
85

Discourse-Tiles-image-gallery

HTML
13
star
86

discourse-anonymous-moderators

Ruby
13
star
87

discourse-moderator-attention

Ruby
13
star
88

discourse-user-card-badges

This plugin allows users to choose one badge with an image to show on their user card.
Ruby
12
star
89

discourse-linkedin-auth

LinkedIn OAuth Login support for Discourse
Ruby
12
star
90

discourse-plugin-skeleton

Template for Discourse plugins
Ruby
12
star
91

discourse-unlock

Ruby
11
star
92

discourse-microsoft-auth

Ruby
11
star
93

discourse-topic-thumbnails

Display thumbnails in topic lists
JavaScript
11
star
94

discourse-footnote

footnotes for posts in Discourse
JavaScript
11
star
95

discourse-teambuild

Team building activity for Discourse
Ruby
11
star
96

discourse-automation

Ruby
11
star
97

discourse-fingerprint

A plugin that computes user fingerprints to help administrators combat internet trolls.
Ruby
11
star
98

discourse-bbcode

vBulletin BBCode plugin
JavaScript
11
star
99

discourse-shared-edits

Shared edits for Discourse
Ruby
11
star
100

graceful

SCSS
10
star