Sign inSign up

raoulsnyman/flaskbb-app

By raoulsnyman

Updated over 4 years ago

Container image for the FlaskBB forum software.

Image
0

152

raoulsnyman/flaskbb-app repository overview

This is a container image for the FlaskBB forum software. This image contains the application itself, running with uWSGI.

To run this software you'll need raoulsnyman/flaskbb-app and raoulsnyman/flaskbb-worker. Then you'll need a PostgreSQL container and a Redis container.

Then use NGINX as a reverse proxy, using its native support for the uwsgi protocol:

      server {
          listen 80;
          server_name myforums.com;

          location / {
              uwsgi_pass 127.0.0.1:3031;
              include uwsgi_params;
          }
      }

More information and the source code to these images will be coming soon.

Tag summary

Content type

Image

Digest

Size

371.8 MB

Last updated

over 4 years ago

docker pull raoulsnyman/flaskbb-app