Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.43 KB

README.md

File metadata and controls

43 lines (32 loc) · 1.43 KB

Docker

We provide docker images with installed cuttlefish debian packages inside; including cuttlefish-base, cuttlefish-user, and cuttlefish-orchestration. Currently it's available for x86_64 and ARM64 architectures.

Download docker image

Currently docker image is available to download from Artifact Registry. Please run command below to download latest version of docker image.

Also, please choose one location among us, europe, or asia. It's available to download artifacts from any location, but download latency is different based on your location.

DOWNLOAD_LOCATION=us # Choose one among us, europe, or asia.
docker pull $DOWNLOAD_LOCATION-docker.pkg.dev/android-cuttlefish-artifacts/cuttlefish-orchestration/cuttlefish-orchestration

Use docker image with Cloud Orchestrator

Please refer to Cloud Orchestrator documentation for on-premise server.

Build docker image manually

Please run below command to build manually.

cd /path/to/android-cuttlefish
cd docker
./image-builder.sh -d

You can validate if the docker image is successfully built by checking cuttlefish-orchestration in docker image list like below.

$ docker image list
REPOSITORY               TAG    IMAGE ID       CREATED          SIZE
cuttlefish-orchestration latest 0123456789ab   2 minutes ago    690MB
...