https://github.com/jgoerzen/docker-qemu
QEMU with Docker
https://github.com/jgoerzen/docker-qemu
Last synced: 25 days ago
JSON representation
QEMU with Docker
- Host: GitHub
- URL: https://github.com/jgoerzen/docker-qemu
- Owner: jgoerzen
- Created: 2017-05-02T15:48:57.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-08T17:27:41.000Z (almost 8 years ago)
- Last Synced: 2025-04-13T04:04:20.547Z (25 days ago)
- Language: Shell
- Size: 10 MB
- Stars: 13
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# qemu for Docker Server
This image can be used standalone, or as a base for other images.
It provides a qemu environment and a VNC console for it, running on
port 5901. This can be used for various guest OSs. If you are
interested in running DOS as a guest OS, I have a nice
image for you at [jgoerzen/qemu-dos](https://github.com/jgoerzen/docker-qemu-dos).# Install and run
You can install with:
docker pull jgoerzen/qemu
And run with:
docker run -d -p 5901:5901 --name myqemu jgoerzen/qemu
This image uses supervisor; please see the supervisor/ directory for
examples. Adding your own processes is very simple.# Environment variable
- `VNCPASSWORD` can set the password for the VNC console
(maximum 8 characters, a limitation of tightvncserver). If you do not set
one, a random password will be assigned on each start of the container, and
logged in the docker logs.# VNC-based console
VNC is exposed on port 5901. You can connect to this port. You will see, by default,
an xterm (white) running here, though
child images may alter these defaults.# Source
This is prepared by John Goerzen and the source
can be found at https://github.com/jgoerzen/docker-bbs/tree/master/qemu# Copyright
Docker scripts, etc. are
Copyright (c) 2017 John Goerzen
All rights reserved.Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the University nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.Additional software copyrights as noted.