Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Docker image to run tests #121

Merged
merged 4 commits into from
Mar 7, 2021
Merged

Commits on Nov 13, 2020

  1. Add Docker image to run tests

    PierreF committed Nov 13, 2020
    Configuration menu
    Copy the full SHA
    33bfc22 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2021

  1. Ensure apt-get update is run before apt-get install

    If an old image is usage, not running apt-get update may cause 404 error
    when trying to install packages.
    This is true even if there is apt-get update in previous RUN
    instruction, because the way Docker cache thing, previous RUN of apt-get
    update may use cached version (which could be weeks old).
    PierreF committed Feb 10, 2021
    Configuration menu
    Copy the full SHA
    10dc489 View commit details
    Browse the repository at this point in the history
  2. In Docker testing image, start all services first

    This avoid trying to access service while it still starting. This
    happened with Redis cluster.
    PierreF committed Feb 10, 2021
    Configuration menu
    Copy the full SHA
    7b18c44 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2021

  1. Allow to get a shell on Docker testing image

    This make much easier to re-run test multiple time without avoid to wait
    backends to start each time.
    PierreF committed Feb 13, 2021
    Configuration menu
    Copy the full SHA
    b5c925d View commit details
    Browse the repository at this point in the history