Replies: 2 comments 5 replies
-
A while ago we changed the entry point for the Docker container directly to KiKit. If you want to invoke other commands, you have to override it to shell or to pcbdraw via |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you! Now I'm able to run the command, however now I'm getting this error: $ docker run --entrypoint /usr/local/bin/pcbdraw -v $(pwd):/kikit yaqwsx/kikit plot opto-counter.kicad_pcb opto-counter.png
Traceback (most recent call last):
File "/usr/local/bin/pcbdraw", line 8, in <module>
sys.exit(run())
File "/usr/local/lib/python3.10/dist-packages/click/core.py", line 829, in __call__
return self.main(*args, **kwargs)
File "/usr/local/lib/python3.10/dist-packages/click/core.py", line 782, in main
rv = self.invoke(ctx)
File "/usr/local/lib/python3.10/dist-packages/click/core.py", line 1259, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/usr/local/lib/python3.10/dist-packages/click/core.py", line 1066, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/usr/local/lib/python3.10/dist-packages/click/core.py", line 610, in invoke
return callback(*args, **kwargs)
File "/usr/local/lib/python3.10/dist-packages/pcbdraw/ui.py", line 138, in plot
plotter = PcbPlotter(input)
File "/usr/local/lib/python3.10/dist-packages/pcbdraw/plot.py", line 1002, in __init__
raise IOError(f"Cannot open board '{boardFile}'") from None
OSError: Cannot open board 'opto-counter.kicad_pcb' The file does exists (otherwise I'd get |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How can I run directly
pcbdraw
from the docker image? Being new to docker, I wasn't able to figure this out myself.Also the link at the end of https://github.com/yaqwsx/PcbDraw/blob/master/doc/installation.md is broken.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions