This repository contains the necessary files to build the images for ontop testing.
-
Execute build of the database of your interest: e.g. build-db2.sh
-
Execute the corresponding run file: e.g. run-db2.sh
-
To remove completely the docker image execute the remove file: e.g. remove-db2.sh
To start the containers:
- Create the .env file in which all the passwords are specified:
cp .env.example .env
- Start the Docker container:
docker-compose -f docker-compose.public.yml pull
docker-compose -f docker-compose.public.yml up
The container is run on the foreground and can be stopped by pressing CTRL-C.
- Stop and remove the containers:
docker-compose -f docker-compose.public.yml down
- Create the .env file in which all the passwords are specified:
cp .env.example .env
- Build the docker images:
docker-compose build
- Start the Docker container:
docker-compose up
The container is run on the foreground and can be stopped by pressing CTRL-C.
- Stop and remove the containers:
docker-compose down