Merge pull request #335 from justincormack/xendoc

Expand platform docs with Xen PV example
This commit is contained in:
Justin Cormack 2016-07-22 11:19:24 +01:00 committed by GitHub
commit 96041c07a4

View File

@ -3,21 +3,38 @@
These are the supported platforms. Each should boot with `mobyplatform=xxx` in the command line. These are the supported platforms. Each should boot with `mobyplatform=xxx` in the command line.
### Desktop ### Desktop
`mac` `mac` `windows` https://github.com/docker/pinata
`windows`
https://github.com/docker/pinata The desktop editions.
### Cloud ### Cloud
`aws` `aws` `azure` https://github.com/docker/editions
`azure`
https://github.com/docker/editions The cloud editions
### Test ### Test
`test` `test` https://github.com/docker/moby
https://github.com/docker/moby Internal test target
### Other ### Running on other platforms
KVM/machine https://github.com/docker/moby/pull/225 `unknown`
The default fallback target name is `unknown` that does only default setup.
## Notes on other platforms
KVM/machine: https://github.com/docker/moby/pull/225
Xen PV: a suitable config is
```
name = "moby0"
memory = 1024
vcpus=1
disk = ['phy:/dev/vg0/moby0,hda,w']
vif = [ 'mac=00:22:ab:42:99:00, bridge=br0' ]
kernel="/home/justin/images/moby/vmlinuz64"
ramdisk="/home/justin/images/moby/initrd.img.gz"
extra="console=hvc0"
on_reboot="restart"
```