Reputation: 113
I'm pretty new with using docker and especially docker-compose and i'm trying to create a docker-compose but it fails with: "failed to solve: rpc error: code = Unknown desc = failed to solve with frontend dockerfile.v0: failed to read dockerfile: open /var/lib/docker/tmp/buildkit-mount155987974/Dockerfile: no such file or directory". My docker-compose looks like this:
version: '3.7'
services:
document-mongo:
image: mongo:latest
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: rootpassword
ports:
- 27017:27017
volumes:
- mongodb_data_container:/data/db
keyring-mongo:
image: mongo:latest
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: rootpassword
ports:
- 27018:27017
volumes:
- mongodb_data_container2:/data/db
document-api:
build:
context: https://github.com/International-Data-Spaces-Association/ids-clearing-house-core.git
container_name: "document-api"
depends_on:
- keyring-api
- document-mongo
environment:
# Allowed levels: Off, Error, Warn, Info, Debug, Trace
- API_LOG_LEVEL=Info
ports:
- "8001:8001"
volumes:
- ./data/document-api/Rocket.toml:/server/Rocket.toml
- ./data/certs:/server/certs
keyring-api:
build:
context: https://github.com/International-Data-Spaces-Association/ids-clearing-house-core.git
container_name: "keyring-api"
depends_on:
- keyring-mongo
environment:
# Allowed levels: Off, Error, Warn, Info, Debug, Trace
- API_LOG_LEVEL=Info
ports:
- "8002:8002"
volumes:
- ./data/keyring-api/init_db:/server/init_db
- ./data/keyring-api/Rocket.toml:/server/Rocket.toml
- ./data/certs:/server/certs
volumes:
mongodb_data_container:
mongodb_data_container2:
OS: Windows 10 Does anyone know how to fix this error?
Upvotes: 9
Views: 13387
Reputation: 51
Try to erase cache.
"Disk usage" extension for docker desktop very helpful.
Upvotes: 0
Reputation: 372
Try to use
DOCKER_BUILDKIT=0 docker-compose build
docker-compose up
source : https://docs.docker.com/build/buildkit/
Upvotes: 2