Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Why should I use Docker containers with IMAS in a first place

If you find it hard to have your local IMAS installation, it might be you find yourself in plan to use IMAS components within one of these situations:

  • you have as a user of a computing cluster but you don't have without root permissions to install new software,
  • you need just a bare bones IMAS installation, with basic components, but you don't have a computing machine and manpower to install it,
  • you don't have to time a manpower to perform regular upgrades of your local IMAS installation,
  • you want to utilise Cloud resources.

Indeed, having a local IMAS installation may be a challenge. However, there is a solution. In case you need your private IMAS release, with slightly limited functionality, a it might be useful to look at a Docker based IMAS release if the way for you to go.

We have successfully used this approach across various projects and were able to deliver solutions from embedding single physical code to complex, micro-services based, server solutions. We were able to provide UDA server and UDA client based on IMAS inside Docker, we have released SimDB installations based on IMAS inside Docker, finally, we provide CI/CD based tests at https://gitlab.eufus.psnc.pl that are based on IMAS inside Docker. And all of that thanks to Docker images with IMAS inside.

...

Code Block
# Just base components - foundation for other images
base image               - gitlab.eufus.psnc.pl:5050/containerization/imas/imas-installer/base


# Everything in base + al core components
AL core image            - gitlab.eufus.psnc.pl:5050/containerization/imas/imas-installer/al-core


# Everything in AL core + components required for a specific language developments
AL Java image            - gitlab.eufus.psnc.pl:5050/containerization/imas/imas-installer/al-java
AL Python image          - gitlab.eufus.psnc.pl:5050/containerization/imas/imas-installer/al-python
AL CPP image             - gitlab.eufus.psnc.pl:5050/containerization/imas/imas-installer/al-cpp
AL Fortran image         - gitlab.eufus.psnc.pl:5050/containerization/imas/imas-installer/al-fortran


# Everything in AL core image + all AL interfaces
AL image                 - gitlab.eufus.psnc.pl:5050/containerization/imas/imas-installer/al


# Everything in AL image + FC2K application
FC2K image               - gitlab.eufus.psnc.pl:5050/containerization/imas/imas-installer/al-fc2k


# Everything in AL image + iWrap application
iWrap image              - gitlab.eufus.psnc.pl:5050/containerization/imas/imas-installer/al-iwrap


# Everything in AL image + SimDB server
SimDB image              - gitlab.eufus.psnc.pl:5050/containerization/imas/imas-installer/al-simdb

List of features inside various images

Successful projects based on Docker images with IMAS

...

Source code: https://gitlab.eufus.psnc.pl/g2jwasik/muscle3-contenerized-test.git

Running CI/CD pipelines using Docker containers with IMAS

If you have wondered whether it is possible to use Docker based IMAS for running regular tests, the answer is: YES. This is perfectly possible. In fact ACH-04 team benefits from this approach every day, whenever we push changes to our code base. We test various projects using pipelines composed of layers of Docker containers.

Image AddedThere is a dedicated tutorial on how to use Docker inside CI/CD plans. You can find it here: 05. ACH GitLab CI/CD - Docker runner (running inside Docker container) There is even a step by step video tutorial you can find on Youtube.

 

Widget Connector
urlhttp://youtube.com/watch?v=dty40YNfvXc

How can I get some help with making my code containers ready

...