我有一个运行带有GUI应用程序的docker容器。一切都运行良好,除非应用程序尝试通过将以下命令推送到系统来关闭屏幕:xset -display :0.0 dpms force off
当此命令到达系统时,docker容器将失败。
这是此容器的docker-compose.yml内容:
version: "3"
volumes:
kiosk_vol:
services:
func:
image: docker.alatimier.fr/kiosk/func:snapshot
restart: always
environment:
KIOSK_ID: ${KIOSK_ID}
ADDR: ${ADDR}
# For Linux host
DISPLAY:
# For OSX host, install socat and xquarts and create TCP bridge between the docker container and X11 window server :
# socat TCP-LISTEN:6000,reuseaddr,fork UNIX-CLIENT:\"$DISPLAY\"
#DISPLAY: docker.for.mac.localhost:0
volumes:
- kiosk_vol:/working_directory
- /tmp/.X11-unix:/tmp/.X11-unix:rw
depends_on:
- conf
ipc: "host"
你知道为什么我不能从docker容器关闭主机屏幕吗?
主机在lubuntu 18.04上,我测试了命令行来关闭屏幕,它工作正常。
谢谢。
所以我发现:
首先要编辑dockerfile以安装X实用程序(没有它,在docker容器中不知道xset):
RUN apt-get install --no-install-recommends -y x11-xserver-utils
然后编辑docker-compose.yml以访问.Xauthority文件并传递显示名称:
version: "4"
volumes:
kiosk_vol:
services:
func:
image: docker.alatimier.fr/kiosk/func:snapshot
restart: always
environment:
KIOSK_ID: ${KIOSK_ID}
ADDR: ${ADDR}
# For Linux host
DISPLAY: $DISPLAY
# For OSX host, install socat and xquarts and create TCP bridge between the docker container and X11 window server :
# socat TCP-LISTEN:6000,reuseaddr,fork UNIX-CLIENT:\"$DISPLAY\"
#DISPLAY: docker.for.mac.localhost:0
volumes:
- kiosk_vol:/working_directory
- /tmp/.X11-unix:/tmp/.X11-unix:rw
- $HOME/.Xauthority:/root/.Xauthority:rw
depends_on:
- conf
ipc: "host"
如果有人有同样的问题,希望这有帮助。