Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 991 Bytes

pull-latest-senzing-docker-images.md

File metadata and controls

40 lines (28 loc) · 991 Bytes

How to pull latest Senzing docker images

Build docker images

  1. Build Senzing "helper" Docker images. Example:

    docker build --tag senzing/mysql        https://github.com/senzing-garage/docker-mysql.git#main
    docker build --tag senzing/mysql-init   https://github.com/senzing-garage/docker-mysql-init.git#main
    

Identify docker images

  1. ✏️ List docker images in DockerHub in an environment variable. Add or delete Docker images from the list. For extensive list, see docker-image-names.sh Example:

    export DOCKER_IMAGE_NAMES=(
        "senzing/senzingapi-runtime:${SENZING_DOCKER_IMAGE_VERSION_SENZINGAPI_RUNTIME:-latest}"
    )
    

Pull images from DockerHub

  1. Add docker images to local docker repository. Example:

    for DOCKER_IMAGE_NAME in ${DOCKER_IMAGE_NAMES[@]};\
    do \
        docker pull ${DOCKER_IMAGE_NAME}; \
    done