skip to Main Content

How to troubleshoot this docker buildx build mkdir -p error on m1 arm64 with target linux/amd64?

I am running docker and docker-compose on my arm64 mac and building one image for linux/amd64 target. I run the following command: docker buildx build -f /Users/k/Desktop/project/Dockerfile --platform linux/amd64 --output type=docker --build-arg BUILD_ENV=production --build-arg NEWRELIC_LICENCE=magic --pull -t 2332.dkr.ecr.eu-central-1.amazonaws.com/project:prod-dfsksfdjkfdjfsdkjfsdk /Users/k/Desktop/project and…

VIEW QUESTION

Docker compose ignoring command line arguments

I have the following docker compose file version: "3.8" services: local-dev: image: solver-dev container_name: local-dev environment: - RUST_LOG=khalani_solver=debug command: "local-dev-env" intent_book_matchmaker: image: solver-dev container_name: intent_book_matchmaker depends_on: - local-dev env_file: - .env environment: - PRIVATE_KEY=${PRIVATE_KEY} - CONFIG_FILE=/config/with-local.json - SEPOLIA_RPC_URL=${SEPOLIA_RPC_URL} - SEPOLIA_WS_URL=${SEPOLIA_WS_URL}…

VIEW QUESTION
Back To Top
Search