├── .dockerignore ├── Dockerfile ├── README.md ├── scripts ├── boot-supervisord ├── startvnc └── waitfordaemon ├── setup └── setup.sh └── supervisor ├── supervisord_jgoerzen.conf ├── vncserver.conf └── xterm.conf /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .gitignore 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoerzen/docker-qemu/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoerzen/docker-qemu/HEAD/README.md -------------------------------------------------------------------------------- /scripts/boot-supervisord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoerzen/docker-qemu/HEAD/scripts/boot-supervisord -------------------------------------------------------------------------------- /scripts/startvnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoerzen/docker-qemu/HEAD/scripts/startvnc -------------------------------------------------------------------------------- /scripts/waitfordaemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoerzen/docker-qemu/HEAD/scripts/waitfordaemon -------------------------------------------------------------------------------- /setup/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoerzen/docker-qemu/HEAD/setup/setup.sh -------------------------------------------------------------------------------- /supervisor/supervisord_jgoerzen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoerzen/docker-qemu/HEAD/supervisor/supervisord_jgoerzen.conf -------------------------------------------------------------------------------- /supervisor/vncserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoerzen/docker-qemu/HEAD/supervisor/vncserver.conf -------------------------------------------------------------------------------- /supervisor/xterm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoerzen/docker-qemu/HEAD/supervisor/xterm.conf --------------------------------------------------------------------------------