stable-diffusion-webui-rocm icon indicating copy to clipboard operation
stable-diffusion-webui-rocm copied to clipboard

docker-compose syntax incorrect

Open brandonegbert opened this issue 1 year ago • 1 comments

Describe the bug Current code results in:

2 error(s) decoding:

* 'group_add[0]' expected type 'string', got unconvertible type 'int', value: '44'
* 'group_add[1]' expected type 'string', got unconvertible type 'int', value: '155'

Editing it from:

    group_add:
      # Video Group Id: 44
      - 44
      # Render Group Id: 155
      - 155

to:

    group_add:
      # Video Group Id: 44
      - '44'
      # Render Group Id: 155
      - '155'

Seems to resolve the issue

To Reproduce

  1. Use Docker Compose version 2.19.0
  2. Run sudo docker-compose up

Expected behavior Doesn't fail with that error.

brandonegbert avatar Jun 26 '23 09:06 brandonegbert