... | ... | @@ -21,12 +21,13 @@ Linux version of AnyWave will run in a docker container. |
|
|
3. Install the anywave dockere container
|
|
|
4. Run the application using the following script:
|
|
|
````bash
|
|
|
xhost +local:docker # Autorise Docker à accéder à X11 (à faire une fois par session)
|
|
|
|
|
|
docker run -it --rm \
|
|
|
-e DISPLAY=$DISPLAY \
|
|
|
-e QT_X11_NO_MITSHM=1 \
|
|
|
-v /tmp/.X11-unix:/tmp/.X11-unix \
|
|
|
--user $(id -u):$(id -g) \
|
|
|
-v /mnt:/mnt \
|
|
|
-v /home/$USER/AnyWave:/home/appuser/AnyWave \
|
|
|
-v "/home/$USER/.config/INSERM U1106":"/home/appuser/.config/INSERM U1106" \
|
|
|
bcolombet/anywave:latest
|
... | ... | @@ -37,12 +38,14 @@ If you wan to use MATLAB or Compiled MATLAB plugins and thus the MATLAB Runtime |
|
|
2. install the MATLAB Runtime on your Linux.
|
|
|
3. add the following two lines to the script above just before the last line:
|
|
|
````bash
|
|
|
|
|
|
xhost +local:docker # Autorise Docker à accéder à X11 (à faire une fois par session)
|
|
|
|
|
|
docker run -it --rm \
|
|
|
-e DISPLAY=$DISPLAY \
|
|
|
-e QT_X11_NO_MITSHM=1 \
|
|
|
-v /tmp/.X11-unix:/tmp/.X11-unix \
|
|
|
--user $(id -u):$(id -g) \
|
|
|
-v /mnt:/mnt \
|
|
|
-v /home/$USER/AnyWave:/home/appuser/AnyWave \
|
|
|
-v "/home/$USER/.config/INSERM U1106":"/home/appuser/.config/INSERM U1106" \
|
|
|
-v /usr/local/MATLAB/R2024b:/usr/local/MATLAB/R2024b \
|
... | ... | |