Container image for the FlaskBB forum software.
152
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.
Content type
Image
Digest
Size
371.8 MB
Last updated
over 4 years ago
docker pull raoulsnyman/flaskbb-app