Skip to content

Commit 0b1f723

Browse files
committed
tweak mount options
1 parent e81a30a commit 0b1f723

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# DhyveOS
22

3-
DhyveOS is a lightweight Linux distribution made specifically to run [Docker](https://www.docker.com/) containers within the [xhyve](https://github.com/mist64/xhyve) hypervisor on OS X. It runs completely from RAM, is a small ~15MB download and boots in ~5s (YMMV).
3+
DhyveOS is a lightweight Linux distribution made specifically to run [Docker](https://www.docker.com/) containers within the [xhyve](https://github.com/mist64/xhyve) hypervisor on OS X. It runs completely from RAM, is a small ~8MB download and boots in ~5s (YMMV).
44

55
## Features
66

7-
* NFS share automounts to /Users
7+
* Uses 9P over virtio to mount your user's home directory so volume mappings work.
88
* Docker runs on port 2375 without TLS
9-
* Designed for use with [dhyve](https://github.com/nlf/dhyve)
9+
* Designed for use with [dlite](https://github.com/nlf/dlite)
1010
* Default root password: dhyve
1111
* Default docker user password: docker
12-
* Uses the devicemapper storage driver configured in direct-lvm mode with XFS backed volumes
12+
* Uses btrfs for the docker filesystem
1313

1414
## Building
1515

rootfs/etc/init.d/S04automount

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ start() {
4747
if [ $? -ne 0 ]; then
4848
adduser -u "$user_id" -G staff -s /bin/sh -D -h "/Users/${user_name}" "$user_name"
4949
fi
50-
mount -t 9p -o trans=virtio -o access=any -o uname="$user_name" host "/Users/${user_name}"
50+
mount -t 9p -o trans=virtio host "/Users/${user_name}"
5151

5252
mkdir -p /home/docker/.ssh
5353
chmod 700 /home/docker/.ssh

0 commit comments

Comments
 (0)