You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I have had issues running a container for development on Windows, so I wanted to move it to a Raspberry Pi 4 - however, now I have a wholly new issue instead:
# podman-compose up --build app-dev
Traceback (most recent call last):
File "/usr/local/bin/podman-compose", line 3472, in <module>
main()
File "/usr/local/bin/podman-compose", line 3468, in main
asyncio.run(async_main())
File "/usr/lib/python3.12/asyncio/runners.py", line 194, in run
return runner.run(main)
^^^^^^^^^^^^^^^^
File "/usr/lib/python3.12/asyncio/runners.py", line 118, in run
return self._loop.run_until_complete(task)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.12/asyncio/base_events.py", line 687, in run_until_complete
return future.result()
^^^^^^^^^^^^^^^
File "/usr/local/bin/podman-compose", line 3464, in async_main
await podman_compose.run()
File "/usr/local/bin/podman-compose", line 1740, in run
retcode = await cmd(self, args)
^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/bin/podman-compose", line 2425, in compose_up
excluded = get_excluded(compose, args)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/bin/podman-compose", line 2416, in get_excluded
excluded -= compose.services[service]["_deps"]
~~~~~~~~~~~~~~~~^^^^^^^^^
KeyError: 'app-dev'
From my limited understanding of Python, it can not find the service app-dev. However, that is very much defined and also works mostly fine on my Windows maschine (which uses docker-compose, but Podman as the backend).
Describe the bug
I have had issues running a container for development on Windows, so I wanted to move it to a Raspberry Pi 4 - however, now I have a wholly new issue instead:
From my limited understanding of Python, it can not find the service
app-dev
. However, that is very much defined and also works mostly fine on my Windows maschine (which uses docker-compose, but Podman as the backend).To Reproduce
Basically try to run this:
Even without having the rest of the code, this should do something. As far as I can tell, it stops before having done anything else...
Expected behavior
I expected
app-dev
to be built, and then ran.Actual behavior
See the log above.
Output
Environment:
Additional context
I am on Alpine Linux on a Raspberry Pi 4 and the latest version as supplied via APK is 1.1.0-rc1. Though I have not tried the Git version yet.
The text was updated successfully, but these errors were encountered: