mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-07-31 05:02:24 -04:00
8 lines
317 B
Bash
8 lines
317 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
COMMAND="/bin/bash"
|
||
|
|
||
|
xhost +si:localuser:root # allow connections to X server
|
||
|
xhost +si:localuser:${USER}
|
||
|
docker run --privileged -e "DISPLAY=unix:0.0" -p 50022:22 -v="/tmp/.X11-unix:/tmp/.X11-unix:rw" -v="/home/${USER}/.config/f4exb:/home/sdr/.config/f4exb:rw" -i -t --rm sdrangel/bionic:vanilla $COMMAND
|