mirror of
https://github.com/moghtech/komodo.git
synced 2025-12-05 19:17:36 -06:00
Stack on second machine running podman can't be managed in the UI #639
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @nathn123 on GitHub (Oct 22, 2025).
So I just installed periphery on a bazzite mini-pc and when i try to deploy a stack i get this error
`
Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet msg.
CRITICAL:podman_compose:no compose.yaml, docker-compose.yml or container-compose.yml file found, pass files with -f
Error: executing /usr/bin/podman-compose -p ollama logs --tail 100: exit status 255
`
this issue appears to be that podman-compose requires the compose file to run
as this correctly runs
bash-5.2# /usr/bin/podman-compose -f /etc/komodo/stacks/ollama/compose.yaml -p ollama logs --tail 100 5137d2561464 time=2025-10-22T17:48:00.206Z level=INFO source=routes.go:1511 msg="server config"my suggestion would be to add a reference to the stack compose file to the podman-compose commands
@nathn123 commented on GitHub (Oct 22, 2025):
I've made an attempt at what i think will work here, but I've never written rust before