Question2Answer docker image
TBA
TBA
Here's an example of a docker-compose.yml
file
question2answer:
image: disrvptor/question2answer
ports:
- "8080:80"
links:
- db:mysql
environment:
QUESTION2ANSWER_DB_USER: question2answer_user
QUESTION2ANSWER_DB_PASSWORD: 123456
QUESTION2ANSWER_DB_NAME: question2answer
db:
image: mariadb
environment:
MYSQL_USER: question2answer_user
MYSQL_PASSWORD: 123456
MYSQL_DATABASE: question2answer
MYSQL_ROOT_PASSWORD: <something secret>
- Q2A 1.7.3 -> 1.7.5
Note: An upgrade to PHP 7.2 was attempted, but too many warnings were displayed in the rendered pages.
- Adds the following plugins
Note: category experts was attempted, but there is an initialization bug where it expects a database table that it doesn't create.