Downloading the images
The image is available as a gzipped tar ball, and should be downloaded to your local host from the Continuent Download portal.
Download the correct file for your environment into a suitable directory, and then unpack the file, for example:
shell> cd /opt/continuent/software/
shell> tar zxvf tungsten-connector-docker-${VERSION}-${ARCH}.tar.gz
where:
- VERSION = Tungsten Connector version with build number like 8.0.4-132
- ARCH =
[ amd64 | arm64 ]
Now that the file is downloaded, we need to load it into your local Docker daemon and push to the registry.
The examples below use the Intel (amd64) architecture files and commands applicable to loading into an AWS ECR Docker registry. Syntax may differ for other environments and should be adjusted accordingly.
shell> export ARCH=amd64
shell> export RELEASE=8.0.4-132
shell> export REGION=us-east-1
shell> export REGISTRY=111222333444.dkr.ecr.us-east-1.amazonaws.com
shell> cd /opt/continuent/software/tungsten-connector-docker-${RELEASE}
shell> docker load -i images/tungsten-connector-_${RELEASE}-${ARCH}.tar
Retrieve an authentication token and authenticate the Docker client to the ECR registry:
shell> aws ecr get-login-password --region ${REGION} | docker login --username AWS --password-stdin ${REGISTRY}
Tag the images:
shell> docker tag tungsten-connector:${RELEASE} ${REGISTRY}/tungsten-connector:${RELEASE}
Finally, push the images to the Docker Registry:
shell> docker push ${REGISTRY}/tungsten-connector:${RELEASE}