imas-installer
repository available on PSNC GitLab: https://gitlab.eufus.psnc.pl/containerization/imas/imas-installerDocker
installed on machine, to check if you have Docker
installed execute following command on your machine:docker --version |
imas-installer
repository: https://gitlab.eufus.psnc.pl/containerization/imas/imas-installerimas-installer
and switch branch to test-simdb
(in the future this branch will be merged into main
). Docker image
git submodule update --init --recursive |
Docker image
with following command:CI_COMMIT_BRANCH=test-simdb ./build.sh -t al-simdb |
al-simdb
image change directory to imas-installer/simDB
. This is directory which containing docker-compose.yml
which describes our configurationdocker-compose.yml
. Default docker-compose.yml
for simdb
and simdb-cli
services has no image assigned to it. If you try to run it, you should see following error:validating <path to compose>/docker-compose.yml: services.simdb.image must be a string |
container registry
https://gitlab.eufus.psnc.pl/containerization/imas/imas-installer/container_registry/74). To check the available al-simdb
images execute following command:docker image ls --format "{{.Repository}}:{{.Tag}}" | grep "al-simdb"### Output gitlab.eufus.psnc.pl:5050/containerization/imas/imas-installer/al-simdb:hotfix_DD-3.42.0_AL-5.3.2_SIMDB-0.11.2-UDA-2.7.5-UDA-PLUGIN-1.4.0 gitlab.eufus.psnc.pl:5050/containerization/imas/imas-installer/al-simdb:hotfix_DD-3.42.0_AL-5.3.2_SIMDB-0.10.1-UDA-2.7.5-UDA-PLUGIN-1.4.0 gitlab.eufus.psnc.pl:5050/containerization/imas/imas-installer/al-simdb:DD-3.39.0_AL-5.3.0_SIMDB-0.10.1-UDA-2.7.5-UDA-PLUGIN-1.4.0 |
Select Docker image
which suits your need and past it into docker-compose.yml
in place of `image: ` for simdb
and simdb-cli
service. It should look like this:
image: gitlab.eufus.psnc.pl:5050/containerization/imas/imas-installer/al-simdb:test-simdb_DD-3.42.0_AL-5.3.2_SIMDB-0.11.2-UDA-2.7.5-UDA-PLUGIN-1.4.0 |