Deploying with Prebuilt Images
The deployment process downloads dependencies and builds the Docker images with the latest available software. In some situations, you might not have access to the required repository, causing this process to fail. You can modify the YAML file to skip the image build and instead pull prebuilt images from Docker Hub.
- In the root directory for the configuration you are deploying, edit the docker-compose.yaml file.
- Make the following changes in the file:
- In the
services.server
block, comment out thebuild
block and replace it with the following:image: ${IMAGE_SERVER}
- In the
services.worker
block, comment out thebuild
block and replace it with the following:image: ${IMAGE_WORKER}
The following partial example shows these changes:server: image: ${IMAGE_SERVER} # build: # dockerfile: ./server.Dockerfile # no_cache: true # args: # IMAGE_SERVER: ${IMAGE_SERVER}${INSIGHT_VERSION:+:${INSIGHT_VERSION}} ... worker: depends_on: server: condition: service_healthy platform: linux/amd64 image: ${IMAGE_WORKER} # build: # dockerfile: ./worker-conda.Dockerfile # no_cache: true # args: # IMAGE_WORKER: ${IMAGE_WORKER}${INSIGHT_VERSION:+:${INSIGHT_VERSION}}
- In the
docker compose up
.
© 2001-2025 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.