skip to Main Content

Duplicate image registries 'index.docker.io' found in the 'imageRegistryCredentials' of container group

[PS C:SourceVelocityAzurev0.10.0credentialagent-docker-compose> docker compose up [+] Running 0/1 - Group credentialagent-docker-compose Error 1.7s 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 'credentialagent-docker-compose'." PS C:SourceVelocityAzurev0.10.0credentialagent-docker-compose>] This was working for…

VIEW QUESTION

How to swap env file for another docker service

I have a docker-compose.yml services: nextjs: container_name: next_app build: context: ./ restart: on-failure command: npm run dev volumes: - ./:/app - /app/node_modules - /app/.next ports: - "3000:3000" cypress: image: "cypress/included:9.4.1" depends_on: - next_app environment: - CYPRESS_baseUrl=http://nextjs:3000 working_dir: /e2e volumes: -…

VIEW QUESTION

How do I delete Postgres docker volume?

I have a docker-compose.yml which I am using to deploy to a remote host from my local (Mac) machine using docker context. The compose config is as follows: database: image: postgres:14.2 restart: on-failure volumes: - ./db-data:/var/lib/postgresql/data environment: POSTGRES_DB: db POSTGRES_USER:…

VIEW QUESTION
Back To Top
Search