Skip to content
Snippets Groups Projects
Commit 834832b1 authored by jurgenhaas's avatar jurgenhaas
Browse files

bitegra/portal/support#49 Add a separate db container for functional tests

parent b873ea7b
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,19 @@ services:
MYSQL_PASSWORD: drupal
MYSQL_LOG_CONSOLE: 0
mariadbtest:
{% if dbserver.type == 'mariadb' %}
image: 'wodby/mariadb:{{ dbserver.version }}'
{% elseif dbserver.type == 'mysql' %}
image: 'mysql/mysql-server:{{ dbserver.version }}'
{% endif %}
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: drupal
MYSQL_USER: drupal
MYSQL_PASSWORD: drupal
MYSQL_LOG_CONSOLE: 0
php:
image: 'wodby/drupal-php:{{ php.version }}'
environment:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment