Accessing Status of Your Build

To access the build logs, please follow below steps:

Once you click on build, you will be redirected to Build Logs page

The build logs showcases how the build is taking place based on the dockerfile. In general, the build logs will show below info:

  1. Pulling Base Image - The process starts by attempting to pull the base image from the Docker Hub registry.

  2. Creating Directory

  3. Setting Working Directory

  4. Copying Package Files

  5. Installing Dependencies

  6. Exposing Port

  7. Setting Entrypoint

After all steps are completed, the log indicates successful building of the image. Finally, the image is tagged with a name creating a reference to the built image with a specific version identifier.

The build logs serve as a tool for monitoring, troubleshooting the Docker image building process.

Build statuses: You can check the status of your build in this page:

Last updated