Description
Description
We create symlinks for all our dependent projects and run docker compose up -d
from there. This generates a lot of warnings recently, which are annoying.
The docs state that you can use the name
attribute in your compose file, but the issue still persists.
Steps To Reproduce
- In Linux (arch in my case)
- Specify a symlink to a project folder which contains a
docker-compose.yml
- Navigate to the symlink
- Run
docker compose up -d
- The following warning is shown:
❯ dcupd
WARN[0000] project has been loaded without an explicit name from a symlink. Using name "<symlink_name>"
[+] Running 1/0
✔ Container <symlink_name>-app-1 Running
Compose Version
❯ docker compose version
Docker Compose version 2.32.1
❯ docker-compose version
Docker Compose version 2.32.1
Docker Environment
Client:
Version: 27.3.1
Context: default
Debug Mode: false
Plugins:
compose: Docker Compose (Docker Inc.)
Version: 2.32.1
Path: /usr/lib/docker/cli-plugins/docker-compose
Server:
Containers: 127
Running: 18
Paused: 0
Stopped: 109
Images: 858
Server Version: 27.3.1
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Using metacopy: true
Native Overlay Diff: false
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
Swarm: inactive
Runtimes: io.containerd.runc.v2 runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 88aa2f531d6c2922003cc7929e51daf1c14caa0a.m
runc version:
init version: de40ad0
Security Options:
seccomp
Profile: builtin
cgroupns
Kernel Version: 6.12.4-arch1-1
Operating System: Arch Linux
OSType: linux
Architecture: x86_64
CPUs: 8
Total Memory: 30.96GiB
Name: lt-axtionunix07
ID: 64ccc3fb-930a-4ecd-af96-fe7b9140b7b0
Docker Root Dir: /var/lib/docker
Debug Mode: false
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
Anything else?
Example docker-compose.yml
:
name: example-name
services:
app:
build:
context: .
dockerfile: Dockerfile
target: development
Activity