0

I'm facing a similar issue reported on this question which remains unsolved.

I've successfully logged in and create an ACI context and I'm attempting to docker compose a specific image:

Which gives the following error:

[+] Running 0/1
 - Group pg  Error                                                                                                                                                                                       1.5s
containerinstance.ContainerGroupsClient#CreateOrUpdate: Failure sending request: StatusCode=400 -- Original Error: Code="DuplicateImageRegistries" Message="Duplicate image registries 'index.docker.io' found
 in the 'imageRegistryCredentials' of container group 'pg'."

Unfortunately requesting technical support from Azure is not available to me, so does anyone know how to proceed?

I'm attempting to deploy a nocodb docker container in Azure. I've been following the tutorial available in the docker documentation.

Docker-compose file

version: '2.1'
services: 
  nocodb: 
    depends_on: 
      root_db: 
        condition: service_healthy
    environment: 
      NC_DB: "DATABASE-STRING-HIDDEN"
    image: "nocodb/nocodb:latest"
    ports: 
      - "8080:8080"
    restart: always
    volumes: 
      - "nc-data:/usr/app/data"
  root_db: 
    environment: 
      POSTGRES_DB: root_db
      POSTGRES_PASSWORD: password
      POSTGRES_USER: postgres
    healthcheck: 
      interval: 10s
      retries: 10
      test: "pg_isready -U \"$$POSTGRES_USER\" -d \"$$POSTGRES_DB\""
      timeout: 2s
    image: postgres
    restart: always
    volumes: 
      - "db-data:/var/lib/postgresql/data"
volumes:
  db-data: 
    driver: azure_file
    driver_opts: 
      share_name: sharenamehidden
      storage_account_name: storagenamehidden
  nc-data: 
    driver: azure_file
    driver_opts: 
      share_name: sharenamehidden
      storage_account_name: storagenamehidden

I expected the docker compose command to work correctly. I've double-checked all my containers and file shares and verified there's nothing in there that could cause conflict

Axide
  • 1
  • 2

0 Answers0