1
0
mirror of synced 2025-12-22 11:26:57 -05:00
Files
docs/content/codespaces/managing-codespaces-for-your-organization/restricting-the-base-image-for-codespaces.md
2022-11-04 16:29:59 +00:00

6.6 KiB

title, shortTitle, intro, permissions, versions, type, topics
title shortTitle intro permissions versions type topics
Restricting the base image for codespaces Restrict base image You can specify which base images can be used for new codespaces created within your organization. To manage image constraints for an organization's codespaces, you must be an owner of the organization.
fpt ghec
* *
how_to
Codespaces

Overview

When you create a codespace, a Docker container is automatically created on a remote virtual machine. The Docker container is created from a Docker image. The image is effectively a template for Docker containers and it determines many aspects of the resulting environment provided by the codespace.

You can choose which image you want to use for your codespaces by specifying it in the dev container configuration for a repository. You can do this, for example, by using the image property in the devcontainer.json file.

"image": "mcr.microsoft.com/vscode/devcontainers/javascript-node:18",

For more information, see the dev containers specification on containers.dev.

If you don't specify an image in the dev container configuration for a repository, the default image is used. The default image contains a number of runtime versions for popular languages and commonly used tools. For more information, see "Introduction to dev containers."

As an organization owner, you can add a policy to restrict which images can be used for codespaces created within your organization.

If the image specified in the dev container configuration does not match one of the allowed images, the following message is displayed when someone tries to create a codespace for the repository:

Codespace could not be created: Base image 'DETAILS FROM DEV CONTAINER CONFIGURATION' is not allowed based on an organization policy set by your organization administrator.

{% note %}

Notes:

  • The base image policy is only applied when a codespace is created. It is currently not applied when you rebuild a container. This will change in a future release. For more information, see "The codespace lifecycle."
  • The base image policy does not apply to the default image, or the image that's used to recover a codespace if an error is introduced into a dev container configuration which prevents the container from being rebuilt.

{% endnote %}

Setting organization-wide and repository-specific policies

When you create a policy you choose whether it applies to all repositories in your organization, or only to specified repositories. If you set an organization-wide policy then any policies you set for individual repositories must fall within the restriction set at the organization level. Adding policies makes the choice of image more, not less, restrictive.

For example, you could create an organization-wide policy that restricts the base image to any of ten specified images. You can then set a policy for Repository A that restricts the image to a subset of just two of the images specified at the organization level. Specifying additional images for Repository A will have no effect because these images are not specified in the organization-level policy. If you add an organization-wide policy, you should set it to the largest choice of images that will be available for any repository in your organization. You can then add repository-specific policies to further restrict the choice.

{% data reusables.codespaces.codespaces-org-policies-note %}

Adding a policy to define the allowed images

{% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.codespaces.codespaces-org-policies %}

  1. Click Add constraint and choose Base images.

    Screenshot of the 'Add constraint' dropdown menu

  2. Click {% octicon "pencil" aria-label="The edit icon" %} to edit the constraint.

    Screenshot of the pencil icon for editing the constraint

  3. In the "Allowed values" field, enter the complete URL of an image you want to allow.

    Screenshot of an entry in the 'Allowed values' field

    {% note %}

    Note: You must specify an image URL that exactly matches the value specified in a dev container configuration.

    {% endnote %}

  4. Click the plus button ({% octicon "plus" aria-label="The plus icon" %}) to add the value.

  5. If required, repeat the previous two steps to add more image URLs. {% data reusables.codespaces.codespaces-policy-targets %}

  6. If you want to add another constraint to the policy, click Add constraint and choose another constraint. For information about other constraints, see:

  7. After you've finished adding constraints to your policy, click Save.

The policy is applied when anyone attempts to create a new codespace that is billable to your organization. The base image constraint does not affect existing codespaces, either active or stopped.

Editing a policy

You can edit an existing policy. For example, you may want to add or remove constraints to or from a policy.

  1. Display the "Codespace policies" page. For more information, see "Adding a policy to define the allowed images."
  2. Click the name of the policy you want to edit.
  3. Click the pencil icon ({% octicon "pencil" aria-label="The edit icon" %}) beside the "Base images" constraint.
  4. Add or remove image URLs.
  5. Click Save.

Deleting a policy

  1. Display the "Codespace policies" page. For more information, see "Adding a policy to define the allowed images."

  2. Click the delete button to the right of the policy you want to delete.

    Screenshot of the delete button for a policy