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
podman-compose version: 1.0.6
['podman', '--version', '']
using podman version: 4.9.2
** excluding: set()
['podman', 'inspect', '-t', 'image', '-f', '{{.Id}}', 'tmp_nfsvolumetest']
Error: unable to inspect "tmp_nfsvolumetest": failed to find image tmp_nfsvolumetest: tmp_nfsvolumetest: image not known
Traceback (most recent call last):
File "/opt/homebrew/bin/podman-compose", line 33, in <module>
sys.exit(load_entry_point('podman-compose==1.0.6', 'console_scripts', 'podman-compose')())
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/Cellar/podman-compose/1.0.6/libexec/lib/python3.11/site-packages/podman_compose.py", line 2941, in main
podman_compose.run()
File "/opt/homebrew/Cellar/podman-compose/1.0.6/libexec/lib/python3.11/site-packages/podman_compose.py", line 1423, in run
cmd(self, args)
File "/opt/homebrew/Cellar/podman-compose/1.0.6/libexec/lib/python3.11/site-packages/podman_compose.py", line 1754, in wrapped
return func(*args, **kw)
^^^^^^^^^^^^^^^^^
File "/opt/homebrew/Cellar/podman-compose/1.0.6/libexec/lib/python3.11/site-packages/podman_compose.py", line 2035, in compose_up
compose.commands["build"](compose, build_args)
File "/opt/homebrew/Cellar/podman-compose/1.0.6/libexec/lib/python3.11/site-packages/podman_compose.py", line 1754, in wrapped
return func(*args, **kw)
^^^^^^^^^^^^^^^^^
File "/opt/homebrew/Cellar/podman-compose/1.0.6/libexec/lib/python3.11/site-packages/podman_compose.py", line 1994, in compose_build
build_one(compose, args, cnt)
File "/opt/homebrew/Cellar/podman-compose/1.0.6/libexec/lib/python3.11/site-packages/podman_compose.py", line 1957, in build_one
raise OSError("Dockerfile not found in " + ctx)
OSError: Dockerfile not found in .
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Support for
dockerfile_inline
syntax was added to compose spec 2 years ago:(compose-spec/compose-spec#298)
It seems, however, that podman is missing support for it. For example, the following example:
results in:
The text was updated successfully, but these errors were encountered: