Home > database >  invalid argument running docker-compose up
invalid argument running docker-compose up

Time:04-24

I am new to docker, trying to run docker image locally according to instruction enter image description here

CodePudding user response:

Maybe there are some corrupted images, try to remove all cache and containers and pull them again.

docker system prune --all
docker volume prune 
docker-compose -f docker-compose-LocalExecutor.yml up -d
  • Related