xmpp.chapril.org-ejabberd/test/docker
Mickaël Rémond f2fd087673
Update docker test README
2019-07-18 17:14:20 +02:00
..
db Initial Docker environment to run ejabberd test suite 2019-05-07 17:59:05 +02:00
README.md Update docker test README 2019-07-18 17:14:20 +02:00
docker-compose.yml Initial Docker environment to run ejabberd test suite 2019-05-07 17:59:05 +02:00

README.md

Docker database images to run ejabberd tests

Starting databases

You can start the Docker environment with Docker Compose, from ejabberd repository root.

The following command will launch MySQL, PostgreSQL, Redis and Riak, and keep the console attached to it.

mkdir test/docker/db/mysql/data
mkdir test/docker/db/postgres/data
mkdir test/docker/db/riak/data
(cd test/docker; docker-compose up)

You can stop all the databases with CTRL-C.

Running tests

You can run tests with (from ejabberd repository root):

make test

Cleaning up the test environment

You can fully clean up the environment with:

(cd test/docker; docker-compose down)

If you want to clean the data, you can remove the data directories after the docker-compose down command:

rm -rf test/docker/db/mysql/data
rm -rf test/docker/db/postgres/data
rm -rf test/docker/db/riak/data