-
Notifications
You must be signed in to change notification settings - Fork 922
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
GenAI changes to allow it to run on Debian GNU/Linux unstable #51
base: main
Are you sure you want to change the base?
Conversation
|
||
docker compose up --build --force-recreate | ||
docker-compose up --build --force-recreate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't docker-compose
deprecated for docker compose
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"docker compose" is the updated version from Docker, yes. However, in the latest version of Debian GNU/Linux and the Unstable branch, it is still a separate command for "docker" and "docker-compose". That is why I suggested, if possible, to create an extra profile, e.g. --profile debianunstable, rather than assume every Linux can use --profile linux. I do not know if this is possible, but it would be nice. As a general rule, "docker compose", with the space is the updated way. I hope this helps.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What I meant is we should encourage the use of docker compose
. But if it is available on Debian Unstable, why not use it ?
Anyway, the changes you made should work even when using docker compose
(the context: .
is implicit in docker compose
, don't know for docker-compose
). The only thing I would do differently is creating another start script for the old docker-compose
instead of changing the actual one.
I would still be interested in what error you had before, maybe there is another workaround!
Thanks! Also, the |
@oskarhane , the issue is that there is a difference between official Docker and official Debian unstable packages for Docker, the latter contains Note to someone else: using the LLM below will take quite some time to fetch in the background, probably several minutes - be patient.
|
I needed a few changes to make GenAI work on my Debian GNU/Linux unstable. If this is interesting to you, perhaps you can turn it into --profile debian-unstable option?
Cheers,
Haakon