Skip to content

Instantly share code, notes, and snippets.

@rbsilva
Created October 18, 2016 17:47
Show Gist options
  • Save rbsilva/30d6bbbebb87f3e90460cee21470535f to your computer and use it in GitHub Desktop.
Save rbsilva/30d6bbbebb87f3e90460cee21470535f to your computer and use it in GitHub Desktop.
Docker compose to open screens in host
version: '2'
services:
android:
image: your-docker-android
environment:
DISPLAY: $DISPLAY
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix
- $HOME/.Xauthority:/home/container-user/.Xauthority
network_mode: "host"
command: script.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment