Getting "manifest for circleci/php:7.1.9-browsers not found" in CircleCI 2.0 build

I keep getting this error every time I try to create my build:

"Build-agent version 0.1.437-d180d4d7 (2018-08-22T16:07:19+0000)
Starting container circleci/php:7.1.9-browsers
image cache not found on this host, downloading circleci/php:7.1.9-browsers

Error response from daemon: manifest for circleci/php:7.1.9-browsers not found"

yaml file:

version: 2.0
jobs:
  build:
    environment:
      CC_TEST_REPORTER_ID: eab6dc27076d631b996f74bd7c58709ff5c707926a20e1b23a8433c5b8462bac
    docker:
      - image: circleci/php:7.1.9-browsers
    working_directory: ~/repo
    steps:
      - checkout
      - run:
          name: Setup dependencies
          command: |
            sudo composer self-update
            composer install -n --prefer-dist
      - run:
          name: Setup Code Climate test-reporter
          command: |
            curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
            chmod +x ./cc-test-reporter
      - run:
          name: Run tests
          command: |
            sudo docker-php-ext-enable xdebug
            ./cc-test-reporter before-build
            sudo vendor/bin/phpunit --coverage-clover clover.xml
            ./cc-test-reporter after-build --coverage-input-type clover --exit-code $?

An image of that tag is not available. See this list for the current tags for that image.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.