-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Closed
Labels
Description
Description
We use docker compose to build images on remote servers.
It worked fine until docker-compose-plugin 2.38.2.
Since then, the docker images are now built on local machine.
Steps To Reproduce
What works
- On Ubuntu 25.04, with the package
docker-compose-plugin=2.38.1-1~ubuntu.25.04~plucky - execute
docker -H ssh://<remoteServer> compose build - The image is present in the remote server and not in the local machine
What does not work
sudo apt remove docker-compose-pluginsudo apt install docker-compose-plugin=2.38.2-1~ubuntu.25.04~plucky- execute
docker -H ssh://<remoteServer> compose build - The image is now present in locale machine and not in the remote server
Compose Version
docker compose version
Docker Compose version v2.38.2
docker-compose version
command not found: docker-compose
Docker Environment
Client: Docker Engine - Community
Version: 28.3.3
Context: default
Debug Mode: false
Plugins:
buildx: Docker Buildx (Docker Inc.)
Version: v0.26.1
Path: /usr/libexec/docker/cli-plugins/docker-buildx
compose: Docker Compose (Docker Inc.)
Version: v2.38.2
Path: /usr/libexec/docker/cli-plugins/docker-compose
Server:
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 1
Server Version: 28.3.3
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Using metacopy: false
Native Overlay Diff: true
userxattr: false
Logging Driver: json-file
Cgroup Driver: systemd
Cgroup Version: 2
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog
CDI spec directories:
/etc/cdi
/var/run/cdi
Swarm: inactive
Runtimes: io.containerd.runc.v2 runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 05044ec0a9a75232cad458027ca83437aae3f4da
runc version: v1.2.5-0-g59923ef
init version: de40ad0
Security Options:
apparmor
seccomp
Profile: builtin
cgroupns
Kernel Version: 6.14.0-27-generic
Operating System: Ubuntu 25.04
OSType: linux
Architecture: x86_64
CPUs: 16
Total Memory: 31.02GiB
Name: chewbacca2
ID: c5f109fc-1e15-47e5-ac6a-324f935fcd3e
Docker Root Dir: /var/lib/docker
Debug Mode: false
Experimental: false
Insecure Registries:
::1/128
127.0.0.0/8
Live Restore Enabled: fals
Anything else?
I tried with any version >2.38.1, and it never worked
D4VID0x2