Installation

How to install and run OpenForum

OpenForum installation is as easy as running the following command from the project folder:

docker build \
       -t open-forum \
       --build-arg WEB_USER_PSW="<enter a psw for the default user>" \
       --build-arg DB_HOST="127.0.0.1" \
       .

# add the next line to the run command if you want to migrate or update the DB:
# -e RUN_MIGRATION="true"
docker run \
       -e RUN_QUEUE="true" \
       -e RUN_SCHEDULER="true" \
       -e RUN_WEBSERVICE="true" \
       -e DB_DATABASE="<database-name>" \
       -e DB_USERNAME="<database-username>" \
       -e DB_PASSWORD="<database-password>" \
       open-forum

Last updated