Local LLM setup#5
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: a0e0f31734
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| - name: Install Docker Engine packages | ||
| ansible.builtin.dnf: | ||
| name: "{{ local_llm_docker_packages }}" | ||
| state: present | ||
| update_cache: true |
There was a problem hiding this comment.
Configure Docker CE repository in local_llm role
This role installs docker-ce* packages immediately, but it never adds the Docker CE repository first. In this codebase, that bootstrap step exists only in roles/docker/tasks/main.yml (dnf config-manager addrepo ...), while the updated README now instructs running --tags local_llm standalone. On a fresh Fedora machine, that standalone path will fail during package resolution before containers are created. Add repo setup (or make local_llm depend on the docker role) before this install step.
Useful? React with 👍 / 👎.
No description provided.