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
I've had more time to play with this. The installation worked and docs are great. When I run:
docker run --rm -v "$(pwd):/data" muskox/trm2rinex:cli-light data/TEST1310.T02 -p data/out -n -d -co -s -v 3.04 -h 0.1387
Error: CtrimbleFile - unable to open file:Z:\data\TEST1310.T02Open
As you can see, I do not have data in the Wine Z:/ filesystem. My ignorance is I know linux but not Wine, so I don't know how to get it there.
I used your notes in the README and did
docker run -it --rm muskox/trm2rinex:cli-light /bin/bash
and I can get into the container filesystem. I could copy things into /home/trm2rinex via the docker run command. Is this the best way to do this? I'd love to hear any tips or tricks that you have.
Thank you for making this tool,
Scott
The text was updated successfully, but these errors were encountered:
Hello, although I don't have many inputs to provide further help, the symptom looks like it is most probably related to access rights management.
the output of command id (outside the container) will provide you the uid and gid for your user (or run it for the user which should execute the docker command if different). On my setup, it default to uid=1000 and gid=1000. If its different on yours, then you want to adapt the docker build file so that the user inside the container have the same uid / gid, which will ease the access rights management.
Also make sure that your user is part of docker group which is probably already the case, and that the user with 1000:1000 (or your setting) has access to the input data file and directory in read and write mode.
Then about the best way to use the container. I think it's probably with the example syntax you are trying so far (using mounted directory from outside the container) rather than copying the files inside the container which will be tedious and hard to repeat on a scheduled task. This is the way I'm using it to generate the data for my CORS station.
Hello Matioupi,
I've had more time to play with this. The installation worked and docs are great. When I run:
docker run --rm -v "$(pwd):/data" muskox/trm2rinex:cli-light data/TEST1310.T02 -p data/out -n -d -co -s -v 3.04 -h 0.1387
Error: CtrimbleFile - unable to open file:Z:\data\TEST1310.T02Open
As you can see, I do not have data in the Wine Z:/ filesystem. My ignorance is I know linux but not Wine, so I don't know how to get it there.
I used your notes in the README and did
docker run -it --rm muskox/trm2rinex:cli-light /bin/bash
and I can get into the container filesystem. I could copy things into /home/trm2rinex via the docker run command. Is this the best way to do this? I'd love to hear any tips or tricks that you have.
Thank you for making this tool,
Scott
The text was updated successfully, but these errors were encountered: