Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] docker compose config --no-interpolate decoding error #12281

Closed
oliora opened this issue Nov 11, 2024 · 4 comments
Closed

[BUG] docker compose config --no-interpolate decoding error #12281

oliora opened this issue Nov 11, 2024 · 4 comments

Comments

@oliora
Copy link

oliora commented Nov 11, 2024

Description

Running docker compose config option --no-interpolate is not compatible with printing information options like --services.

Running docker compose -f my_config.yaml config --services works fine but if I add --no-interpolate option e.g. docker compose -f my_config.yaml config --services --no-interpolate then the run fails with error:

decoding failed due to the following error(s):

'services[frontend].ports[0]' expected a map, got 'string'
'services[frontend].ports[1]' expected a map, got 'string'

Same error with using some other printing options e.g. --volumes.

I understand that without interpolation it may not be possible to print requested information but in such case there should be a more clear error message.

Steps To Reproduce

No response

Compose Version

Docker Compose version v2.29.2-desktop.2

Docker Environment

Client:
 Version:    27.2.0
 Context:    desktop-linux
 Debug Mode: false
 Plugins:
  buildx: Docker Buildx (Docker Inc.)
    Version:  v0.16.2-desktop.1
    Path:     /Users/oliora/.docker/cli-plugins/docker-buildx
  compose: Docker Compose (Docker Inc.)
    Version:  v2.29.2-desktop.2
    Path:     /Users/oliora/.docker/cli-plugins/docker-compose
  debug: Get a shell into any image or container (Docker Inc.)
    Version:  0.0.34
    Path:     /Users/oliora/.docker/cli-plugins/docker-debug
  desktop: Docker Desktop commands (Alpha) (Docker Inc.)
    Version:  v0.0.15
    Path:     /Users/oliora/.docker/cli-plugins/docker-desktop
  dev: Docker Dev Environments (Docker Inc.)
    Version:  v0.1.2
    Path:     /Users/oliora/.docker/cli-plugins/docker-dev
  extension: Manages Docker extensions (Docker Inc.)
    Version:  v0.2.25
    Path:     /Users/oliora/.docker/cli-plugins/docker-extension
  feedback: Provide feedback, right in your terminal! (Docker Inc.)
    Version:  v1.0.5
    Path:     /Users/oliora/.docker/cli-plugins/docker-feedback
  init: Creates Docker-related starter files for your project (Docker Inc.)
    Version:  v1.3.0
    Path:     /Users/oliora/.docker/cli-plugins/docker-init
  sbom: View the packaged-based Software Bill Of Materials (SBOM) for an image (Anchore Inc.)
    Version:  0.6.0
    Path:     /Users/oliora/.docker/cli-plugins/docker-sbom
  scout: Docker Scout (Docker Inc.)
    Version:  v1.13.0
    Path:     /Users/oliora/.docker/cli-plugins/docker-scout

Server:
 Containers: 7
  Running: 0
  Paused: 0
  Stopped: 7
 Images: 13
 Server Version: 27.2.0
 Storage Driver: overlayfs
  driver-type: io.containerd.snapshotter.v1
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 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: 8fc6bcff51318944179630522a095cc9dbf9f353
 runc version: v1.1.13-0-g58aa920
 init version: de40ad0
 Security Options:
  seccomp
   Profile: unconfined
  cgroupns
 Kernel Version: 6.10.4-linuxkit
 Operating System: Docker Desktop
 OSType: linux
 Architecture: aarch64
 CPUs: 10
 Total Memory: 7.655GiB
 Name: docker-desktop
 ID: e389971f-bb54-4e02-9631-ec88b7c86f9a
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 HTTP Proxy: http.docker.internal:3128
 HTTPS Proxy: http.docker.internal:3128
 No Proxy: hubproxy.docker.internal
 Labels:
  com.docker.desktop.address=unix:///Users/oliora/Library/Containers/com.docker.docker/Data/docker-cli.sock
 Experimental: false
 Insecure Registries:
  hubproxy.docker.internal:5555
  127.0.0.0/8
 Live Restore Enabled: false

WARNING: daemon is not using the default seccomp profile

Anything else?

No response

@idsulik
Copy link
Collaborator

idsulik commented Nov 11, 2024

@oliora hi! Could you please provide a config file to reproduce the issue? I couldn't reproduce it using Docker Compose version v2.29.7-desktop.1

@oliora
Copy link
Author

oliora commented Nov 11, 2024

@idsulik sure, I can reproduce it with the following test.yaml compose file. Command is docker compose -f test.yaml config --no-interpolate --volumes.

networks:
  localnet:
    ipam:
      driver: default
      config:
        - subnet: $LOCAL_NET

services:
  frontend:
    build: ../../submodules/frontend
    restart: unless-stopped
    platform: linux/amd64
    ports:
      - "$LISTEN:$PORT:80"
      - "$LISTEN:$PORT_SSL:443"
    environment:
      HOST_NAME: $HOST_NAME
    networks:
      localnet:
    volumes:
      - ./configs/proxy_params:/etc/nginx/proxy_params
      - ./configs/nginx-defaults.conf:/etc/nginx/nginx-defaults.conf

@idsulik
Copy link
Collaborator

idsulik commented Nov 11, 2024

@oliora thank you! pushed fix for it #12282

@oliora
Copy link
Author

oliora commented Nov 11, 2024

Wow, so quick. Thank you!

@oliora oliora changed the title [BUG] docker compose config --no-interpolate decoding erros [BUG] docker compose config --no-interpolate decoding error Nov 11, 2024
@idsulik idsulik closed this as completed Nov 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants