skip to Main Content

Docker – (InaccessibleImage) The image From Azure container instance

I am using following commands: but it is failing with following image. how to fix this? az container create --resource-group $(zapACIGroupName) --name $(zapACIName) --image owasp/zap2docker-stable --ports 8080 8090 --azure-file-volume-account-name $(zapACIStoreName) --azure-file-volume-account-key $(createSA.aciStoreKey) --azure-file-volume-share-name $(zapACIShareName) --azure-file-volume-mount-path /zap/wrk/ --command-line "/bin/bash -c 'zap-baseline.py…

VIEW QUESTION

docker-compose -e flag does not override default value

I have created the following docker-compose.yml: version: "3.8" services: app: image: my-image build: context: . dockerfile: Dockerfile working_dir: /src command: python ${SCRIPT} environment: - .env app-dev: extends: service: app volumes: - ./src:/src My .env file has one line: SCRIPT=./tutorial_00/docker_test.py I…

VIEW QUESTION

Ubuntu – Docker cannot extract image

I just update my ubuntu and its kernel has been updated: > uname -r 6.8.0-40-generic Then, I pull a simple image: docker pull alpine:latest And I got the following error: latest: Pulling from library/alpine c6a83fedfae6: Extracting [==================================================>] 3.623MB/3.623MB failed to…

VIEW QUESTION
Back To Top
Search