MunsMan
MunsMan
Are there any updates? I'm currently pretty new to tauri and still learning a lot, but I can't figure out how to open files with my app selected for opening...
I had the same problem, but then I found this `docker run --privileged --rm tonistiigi/binfmt --install all` in the official [documentation](https://docs.docker.com/build/building/multi-platform/), which solved my problem. Further explanation will be found...
@LiterallyWar Maybe I missed up the Issue, but I had a pretty similar problem. My cross-platform builds for arm always failed while running the `npm install` or `yarn` command. Currently,...
@LiterallyWar I was just able to reproduce my Error: ``` => [internal] load build context 0.0s => => transferring context: 779B 0.0s => [linux/amd64 2/7] WORKDIR /app 0.3s => [linux/amd64...
@HendrixNguyen I'm sorry, sadly I'm not an expert on this topic, I just posted my finding while having the problem. If I recall correctly, I didn't restart the docker.service. I...
It appears that the `jq` command is currently installed only in your user space and not system-wide. This could cause issues if you're trying to access it from processes that...
Should there be support for the VS Code Server? I get why VS Code, but shouldn't the support be more generic? This way, even more Editors/IDEs can adapt this workflow,...
Is there any information about the intent of adding Port Forwarding to the `devcontainer` CLI?
@michaelperel, to my knowledge, port forwarding is not supported in the CLI via `forward-port`. You can use the `appPort` Option. I implemented basic port forwarding via the docker `-p`/`--publish` flag....
I would love this feature and I would try to make an implementation draft, but I have a couple of questions. 1. To my knowledge, Docker only supports port forwarding...