docker compose - ignore build context path

8.9k Views Asked by At

I have docker-compose.yml file with build context property specified like this:

version: '3'
services:
  my-service:
    container_name: my-service
    image: my-service
    build:
      context: foo
    ports:
    - 8088:8088

  # other services

When I run docker-compose up locally, build context does exist and everything works fine. However, my CI server is configured to use the same docker-compose.yml file but there is no build context (images are copied as .tar archive via SSH and then loaded via docker load). Now I've got an error:

ERROR: build path /foo either does not exist, is not accessible, or is not a valid URL.

So I've tried to find a way to suppress looking for this build context when running docker-compose up (I don't want to build images cause they are already up-to-date), but docker-compose up --no-build does not work. Any ideas?

3

There are 3 best solutions below

2
On

docker-compose.override.yml is good solution in this case. You may override only build block and this is not hard to mantain as two independent files.

docker-compose.override.yml:

version: '3'
  services:
    my-service:
      build:
        context: foo

docker-compose.yml

version: '3'
  services:
    my-service:
      container_name: my-service
      image: my-service
      ports:
        - 8088:8088

See https://docs.docker.com/compose/extends/

1
On

I had the same problem, and my solution, until "docker-compose config" provides a way to skip the directory-exists check, is to automatically create those directories that "docker-compose config" expects.

Here is a one-liner that does this:

egrep '    (context:|build)' < docker-compose.yml | sed -E 's/\s+\S+:\s*//' | xargs mkdir -p .

It's ugly, but I couldn't figure out another way. (The .extends. way mentioned by dngnezdi is not a solution, as I needed an automatic method.)

0
On

I posted your issue as a feature request on the docker-compose repository. Let's see how it progresses:

https://github.com/docker/compose/issues/7674

Meanwhile, you will have to workaround this by modifying your CI script that does the docker-compose up --no-build so it does the mkdir -p ... that you need.