This repo purpose is to have all the necessary requirements to compile and push new docker images to Dockerhub. Esentially, it holds the Dockerfile scripts to make the respective app images and a github action that joins everything into a Docker container image that is pushed into Dockerhub. The images that can be generated are the following:
- RoboticsBackend (RB for short): For use in Unibotics and as a base to all others.
- RoboticsAcademy (RA for short): For use in RoboticsAcademy, formerly known as RADI.
- RoboticsDatabase: Database for use in RoboticsAcademy, contains universes db, excercises db and RA django_auth db.
- Bt-Studio (BT for short): For use in Bt Studio, formerly known as BTDI.
- Bt-Studio Database: Database for use in Bt Studio, contains universes db and Bt Studio django_auth db.
This github action is prepared to package every image created by the Dockerfiles into a RoboticsBackend tagged docker image. This github action needs some inputs:
-
Docker Image tag: The id of the tag of the RoboticsBackend image to pull from Dockerhub. It is usually a number followed by points (ex: 4.6.3) unless it's a beta image, which should be tagged as beta
-
Upload as latest: The id of the tag of the RoboticsBackend image is also set to latest to pull from Dockerhub. Check only if the image is desired to be used as the latest reference.
-
Branch of RoboticsInfrastructure: The branch of RoboticsInfrastructure repo that will be packaged. It's default value is humble-devel.
-
Branch of RoboticsApplicationManager: The branch of RoboticsApplicationManager repo that will be packaged. It's default value is humble-devel.
-
ROS Distro: ROS version that will be used on the simulations. From now on RA and Unibotics-webserver only use ROS 2 (humble).
- All the necessary setups for github action is prepared.
- The github action logs in the Dockerhub webpage using the github actions secrets.
- Then builds a base image with all the deppendencies used on robotics applications.
- Finally starts compiling and packaging every repo to create the RB image.
- New RB image is pushed into Dockerhub.
At the time this documentation is being written, RA and BT are the only robotics application used on Unibotics-webserver. Nonetheless, there's future plans to add new apps. The only requirements to do so is to add the necesarry dockerfiles to the scripts directory and add the builiding of that new app into the Github Action.