Deploying with Docker Image
Learn about the deployment method for the most control: deploying via Docker Image
Overview
If you need absolute control over your Docker image’s build, Aptible lets you deploy directly from a Docker image. Additionally, Aptible’s Terraform Provider currently only supports Direct Docker Image Deployment - so this is a benefit to using this deployment method.
The workflow for Direct Docker Image Deploy is as follows:
- You build your Docker image locally or in a CI platform
- You push the image to a Docker registry
- You use the
aptible deploy
command to initiate a deployment on Aptible from the image stored in your registry.
Private Registry Authentication
You may need to provide Aptible with private registry credentials to pull images on your behalf. To do this, use the APTIBLE_PRIVATE_REGISTRY_USERNAME
and APTIBLE_PRIVATE_REGISTRY_PASSWORD
Configuration variables.
Long term credentials
Most Docker image registries provide long-term credentials, which you only need to provide once to Aptible.
With Direct Docker Image Deploy, you only need to provide the registry credentials the first time you deploy.
Short term credentials
Some registries, like AWS Elastic Container Registry (ECR), only provide short-term credentials. In these cases, you will likely need to update your registry credentials every time you deploy.
With Direct Docker Image Deploy, you need to provide updated credentials whenever you deploy, as if it were the first time you deployed:
FAQ
Was this page helpful?