Querydsl: [suggestion] how about using docker for querydsl test environment?

Created on 26 Jun 2020  ·  5Comments  ·  Source: querydsl/querydsl

In the current querydsl test environment, vagrant is used.

This environment is good, but it requires a number of pre-requisites. (VirtualBox, Puppet, Vagrant..)

If we provide various databases as docker compose, wouldn't it be simpler to build a test environment?

for example,

version: '2'
services:
  mysql:
    image: mysql:5.5
    environment:
      MYSQL_USER: querydsl
      MYSQL_PASSWORD: querydsl
      MYSQL_DATABASE: querydsl
      MYSQL_ROOT_PASSWORD: querydsl
    volumes:
      - /var/lib/mysql
    ports:
      - "3306:3306"
  postgre-sql:
    image: postgres:9.1
    ports:
      - "5433:5432"
    environment:
      POSTGRES_USER: querydsl
      POSTGRES_PASSWORD: querydsl
      POSTGRES_DATABASE: querydsl
      POSTGRES_ROOT_PASSWORD: querydsl
    volumes:
      - /var/lib/postgresql/data
.
.
.
(Other necessary database environments...)

Most helpful comment

Ah here it is: https://github.com/querydsl/querydsl/blob/master/travis/docker-compose.yml

I guess we could mention it in the README

All 5 comments

It's possible. Usually, I just test against the database of my preference (which runs in Docker) and rely on CI for all various databases that are supported.

I usually just run the docker-compose file we use in CI locally.

Ah here it is: https://github.com/querydsl/querydsl/blob/master/travis/docker-compose.yml

I guess we could mention it in the README

Oh, docker-compose already exists! :)

I'll change it to an issue that mentions the docker-compose environment in the Readme.

I’ve been meaning to update the readme and move the docker-compose.yml file to the root of the project. Thanks for the reminder.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

beamofsoul picture beamofsoul  ·  6Comments

rafaelszp picture rafaelszp  ·  5Comments

svaidya401 picture svaidya401  ·  4Comments

devcken picture devcken  ·  6Comments

robertandrewbain picture robertandrewbain  ·  5Comments