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

docker-compose syntax incorrect #11

Open
brandonegbert opened this issue Jun 26, 2023 · 1 comment
Open

docker-compose syntax incorrect #11

brandonegbert opened this issue Jun 26, 2023 · 1 comment

Comments

@brandonegbert
Copy link

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.

@winstonma
Copy link

winstonma commented Aug 6, 2023

@brandonegbert After adding the following lines in Dockerfile (reference from ROCm-docker - quick-start.md). I could remove the whole group_add section.

See if that works for you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants