Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.14 KB

README.md

File metadata and controls

54 lines (36 loc) · 1.14 KB

misago-docker

DEPRECATED. Use official docker solution. https://github.com/rafalp/misago_docker. The contents of the repo can still be useful for people who run custom setups.

A docker standalone compose setup for running Misago with dependecies.

This setup configures and runs for following services:

  • Misago
  • Postgres
  • Redis
  • Nginx (reverse proxy)

Configuring Postgres

Edit credentials in postgres.env.

POSTGRES_USER=misago
POSTGRES_PASSWORD=misago
POSTGRES_DB=misago

Configure Misago

Edit the misagodocker.env file.

MISAGO_SUPERUSER_USERNAME=admin
MISAGO_SUPERUSER_PASSWORD=qwertyuiop
[email protected]

Set the correct virtualhost name for your forum. It can take multiple comma separated values if needed (no spaces).

VIRTUAL_HOST=misago.test

Replace the secret key with this secret key generator.

SECRET_KEY=replaceme

Running Stuff

Start the compose setup and the forum should be available at the virtualhost name shortly.

docker-compose up -d