stable-diffusion-webui-rocm
stable-diffusion-webui-rocm copied to clipboard
docker-compose syntax incorrect
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
- Use Docker Compose version 2.19.0
- Run
sudo docker-compose up
Expected behavior Doesn't fail with that error.