If the deployment host has no outbound internet access, complete this guide before Step 4: Download the v6.x Deployment Files in the main migration runbook. It mirrors the low-side/high-side process in Air-Gapped Docker Compose deployment — the v6.x reference compose file, database Dockerfile, and application images all need to reach the high side before you can start the new deployment, in addition to the database dump you already have to move as part of the migration itself.
Prepare the Files and Images (low side)
Download the v6.x compose file and database Dockerfile:
curl -sSfL https://docs.anchore.com/current/docs/deployment/docker_compose/docker-compose.yaml > docker-compose.yaml curl -sSfL https://docs.anchore.com/current/docs/deployment/docker_compose/Dockerfile.anchore-db > Dockerfile.anchore-dbPull the v6.x application images:
docker pull docker.io/anchore/enterprise:v6.1.0 docker pull docker.io/anchore/enterprise-ui:v6.1.0 docker pull docker.io/redis:7.4.6Build the database image from
Dockerfile.anchore-db:docker build -f Dockerfile.anchore-db -t anchore:db .
Move the Files and Images to the High Side
Choose one of the following, matching the equivalent step in the Air-Gapped Docker Compose deployment guide:
- Private container registry (recommended) — re-tag, then push directly, or save/transfer/load/push, exactly as described in Option 1, for all four images pulled/built above.
- Local image tarball — for hosts with no registry available, as described in Option 2.
Also transfer docker-compose.yaml, Dockerfile.anchore-db, and your license.yaml to the high side along with the images — you’ll need docker-compose.yaml in Step 4 of the main runbook, and the Dockerfile is kept for reference even though anchore:db is already built.
Point Your Compose File at the Registry (or Local Images)
Update the image: lines in your new docker-compose.yaml exactly as described in Deploy on the High Side on the deployment air-gapped page — point every service referencing docker.io/anchore/enterprise and docker.io/anchore/enterprise-ui at your registry tag or locally loaded image name, replace anchore-db’s build: section with a direct image: <registry>/anchore:db (or image: anchore:db for a local tarball) reference, and update the redis image line the same way.
Run the Migration from the Local Files
Continue with the main migration runbook starting at Step 4, substituting the compose file you just edited for the one Step 4 would otherwise download, and skipping the curl commands there — you already have both files from the low side.
Every other step needs no changes for an air-gapped host:
- Step 5: Configure Secrets through Step 10: Validate the Upgrade run exactly as written.
- Step 7: Export the v5.x Database and Step 8: Restore the Data into the New Database are a direct
pg_dump/pg_restoreagainst your own database containers and require no internet access either way.