All of the docker files for all of the things.
In order to push images to DockerHub you will first need to login, using the following command:
docker loginBuilding and pushing uses Make that will build not only your required docker files, but also its dependencies. To build a specific set of docker files run the command make build_{application name}, such as:
make build_identityIf the set of docker files has already been built it will not be built again. To rebuild a set of docker files you will first have to clean up the previous builds:
make clean_{application name}It is also possible to clean or build everything by running:
make build_clean
make build_allAs well as building docker images, they can also be pushed to DockerHub by replacing the build_ prefix with push_, such as:
make push_clean
make push_all
# or
make push_identitymake build_all
make push_allmake build_clean # Clean builds
make push_clean # Clean pushes
make clean # Clean builds and pushesmake build_airflow
make push_airflowmake build_indentity
make push_identitymake build_genvasc_portal
make push_genvasc_portalmake build_link_checker
make push_link_checkermake build_mssql_github
make push_mssql_githubAll of the redcaps can be built with one target
make build_redcap
make push_redcap