Sei sulla pagina 1di 40

boot2docker / boot2docker

Join GitHub today Dismiss


GitHub is home to over 20 million developers working together to host
and review code, manage projects, and build software together.
Sign up

1.3.0 ‑ Only root can write to OSX volumes / Can't change New issue
permissions within #581
Open lynxnathan opened this issue on Oct 20, 2014 · 230 comments

lynxnathan commented on Oct 20, 2014 Assignees


No one assigned
Currently only root inside the container is able to modify mounted volumes. Also permissions
changed from within have no effect. I'm unsure as to whether cannot be managed dynamically on Labels
the blog post refers to any of this. None yet
I would suggest updating the readme to let users know about the existence of native support for
volumes and also its limitations (especially if this is one of them). Projects
None yet
6
Milestone
SvenDowideit added this to the 1.3.1 milestone on Oct 20, 2014 No milestone
106 participants
mnapoli commented on Oct 20, 2014
I think I'm having the same issue (latest versions of everything, installed today).
In the container, in a directory shared with the host (i.e. mounted through the virtualbox VM):
and others
root user can write files
www‑data user can't, even in a directory with 777 permissions
Is that normal or not? (i.e. I did something wrong)

lukaswelte commented on Oct 20, 2014


So means if I create a cache folder for example that writes new files and folders to disk during
execution, I cannot do this right now?
Cause I experience the same problem as @mnapoli does..

bradgessler commented on Oct 21, 2014


I wrote up a simple test case. Let me know if there's anything else I can do to make this bug easier to
fix.
First, I create a Dockerfile:
FROM ubuntu:14.04

# Adding user
RUN adduser --system --ingroup staff mugzy
# Setup repos dir.
RUN mkdir /data
RUN chown mugzy:staff -R /data
VOLUME /data

CMD touch /data/file && ls -al /data

Then create a host volume that I'll mount into the Docker instance at runtime:
app[master] → mkdir ./data

When I run the container, I see root:root ownership on the docker /data volume. I'd expect for
this to be what I set from the Dockerfile above, mugzy:staff :
app[master] → docker run -i -v $PWD/data:/data c638bc43bfe7
total 4
drwxr-xr-x 1 1000 staff 102 Oct 21 2014 .
drwxr-xr-x 62 root root 4096 Oct 21 01:54 ..
-rw-r--r-- 1 1000 staff 0 Oct 21 01:49 file

Obviously when I then run the docker instance as mugzy , the volume has incorrect permissions and I
can't write to disk:
app[master] → docker run -i -v $PWD/data:/data -u mugzy c638bc43bfe7
total 4
drwxr-xr-x 1 1000 staff 102 Oct 21 2014 .
drwxr-xr-x 62 root root 4096 Oct 21 01:54 ..
-rw-r--r-- 1 1000 staff 0 Oct 21 01:49 file
touch: cannot touch '/data/file': Permission denied

I'd imagine if people are trying to boot services in Docker on Mac, they'd want to be able to setup a
volume that a service user can write to for persistence.
This was referenced on Oct 22, 2014
VirtualBox Guest Additions #534 Merged
Cannot remove mounting of /Users on OS X #586 Open

vmaatta commented on Oct 22, 2014


Mounting a VBox share as UID 999 will allow the created container user to write as it's usually 999.
This is just a fragile hack on the hack but it does allow writing…
sudo mount -t vboxsf -o uid=999,gid=50 your-other-share-name /some/mount/location

lukaswelte commented on Oct 22, 2014


So can I use this command to set the /Users share to be writeable?
Or do I have to create a special share for every application that needs to be able to write in a folder?

vmaatta commented on Oct 22, 2014


/Users is a bit special as it's mounted by the boot2docker script (any share matching the names
listed in release notes), changing it requires customising the code. I just created a custom share
anyway as I don't want to share the whole /Users structure with containers.
1. Overriding the /Users default share on boot2docker start:
boot2docker --vbox-share=$(pwd)/share-location=share-name up
2. boot2docker ssh in and mount the custom share:
sudo mount -t vboxsf -o uid=999,gid=50 share-name [SHARE-FULL-PATH]/share-location

lukaswelte commented on Oct 22, 2014


Thanks for the workaround.
Although it would be great to have that behavior built into the boot2docker script (don’t want
coworkers to do much extra action).

SvenDowideit commented on Oct 23, 2014 Owner

@tianon ?

SvenDowideit referenced this issue on Oct 23, 2014


Attempting to change ownership or permissions on a bind‑mounted volume Open
via docker exec fails #587
tianon commented on Oct 23, 2014 Contributor

This is bizarre ‑ do we need to tweak something about the way we mount the share?
There's nothing special about what we do:
https://github.com/boot2docker/boot2docker/blob/master/rootfs/rootfs/etc/rc.d/automount‑shares
(just uid=...,gid=... as mentioned here)

tianon modified the milestone: 1.3.1 on Oct 23, 2014


tianon commented on Oct 23, 2014 Contributor

Indeed, I've just tested here:


docker@boot2docker:~$ ls -lAF /
...
drwxr-xr-x 1 docker staff 12288 Oct 23 16:37 Users/
...
docker@boot2docker:~$ echo test > /Users/test
docker@boot2docker:~$ cat /Users/test
test
docker@boot2docker:~$ rm -v /Users/test
rm: remove '/Users/test'? y
docker@boot2docker:~$

So I definitely need more information about what's going wrong if we're going to figure out how to fix
it.

mnapoli commented on Oct 23, 2014


@tianon Now try with a different user and it will not work.
The big problem is that usually, Nginx or MySQL or whatever will run as a different user (www‑data,
mysql…) so it's impossible to use Docker at all (at least in those situations).

tianon commented on Oct 23, 2014 Contributor

Right, but how can we fix it?


Permissions with volume mounts are one of those "gotchas" that's always a sticky point, so I don't
see a good fix for the general case (besides Docker handling the volume sharing more directly, and
thus smoothing permissions issues somehow), especially since once you've got it working for "just
this one container", you're going to want to spin up another, and it will probably have different UIDs
altogether (think mysql + postgres + wordpress + stuff specific to your own development, etc).

vmaatta commented on Oct 23, 2014


@tianon above in your example you're running as the docker user in the VM. It'll work just fine there
but the container and added users are a different story.
Outside the container, in the VM, the vboxsf is mounted as UID=1000, GID=50, i.e. docker:staff
Inside a running container that UID is not in use by default, but if you'll just useradd new user,
1000 will be the first ID. Ok so far.
If you add both a new group and a new user to the freshly created group, inside the container,
you'll likely end up with UID / GID 999 999… ‑> Quite a few containers in the Hub do just that.
They add a group and a user for the process to run as. Here's an example from the postgres
container* RUN groupadd -r postgres && useradd -r -g postgres postgres . That'll end up with
999 999
Here's some testing I did with my custom uid=999,gid=50 vboxsf:
Test "postgres" container
root@9aa1b6f15b1c:/# groupadd -r postgres && useradd -r -g postgres postgres
root@9aa1b6f15b1c:/# cat /etc/group | grep post
postgres:x:999:

root@9aa1b6f15b1c:/tmp/test# mkdir root-dir


root@9aa1b6f15b1c:/tmp/test# su -c 'mkdir user-dir' postgres
root@9aa1b6f15b1c:/tmp/test# su -c 'touch user-file' postgres
root@9aa1b6f15b1c:/tmp/test# su -c 'echo "test" > user-file' postgres
root@9aa1b6f15b1c:/tmp/test# su -c 'cat user-file' postgres
test
root@9aa1b6f15b1c:/tmp/test# su -c 'ln -s user-file user-link' postgres
root@9aa1b6f15b1c:/tmp/test# su -c 'ln user-file user-hard-link' postgres
ln: failed to create hard link `user-hard-link' => `user-file': Operation not permitted

New container
root@7a795aa575df:/# useradd test-user
root@7a795aa575df:/# cat /etc/passwd

test-user:x:1000:1000::/home/test-user:/bin/sh
root@7a795aa575df:/tmp/test# su - test-user
No directory, logging in with HOME=/
$ cd /tmp/test
$ touch test-user-test-file
touch: cannot touch `test-user-test-file': Permission denied

VM
docker@boot2docker:~$ ls -lAF /Users/vmaatta/projects/data/writetest/
total 8
drwxr-xr-x 1 999 staff 68 Oct 23 20:44 root-dir/
drwxr-xr-x 1 999 staff 68 Oct 23 20:45 user-dir/
-rw-r--r-- 1 999 staff 5 Oct 23 20:48 user-file
lrwxr-xr-x 1 999 staff 9 Oct 23 20:49 user-link -> user-file

Now, as you said, it's very difficult to come up with a general fix. And this is actually not that different
from the situation of running docker on a Linux host without boot2docker or any other virtualisation
layer. Issues with volume folder rights are a challenge there as well.
Currently the vboxsf mount is UID / GID 1000 50. That's docker:staff in the VM and, no‑one:staff or
first user to default group in a container. I changed this to 999 50 which matches the new group and
user scenario by UID. GID is still 50 and this allows the VM docker user access and also the container
root user is fine. The web server I mount a volume for uses the new group and user scenario as well
so it works for me.
I don't know… maybe there's a better / more general UID / GID combination but I've seen 999 999
mentioned already a couple times in the Hub for containers' documentation. No surprise as they add
both group and a user. But YMMV and that's why I've just done this in bootlocal.sh instead of a pull
request.
And maybe we need something completely different [from vboxsf] to solve this.
Postgres being a bit bad example now as initdb dies on hard links now but oh well… there's
nothing we can do for that here unfortunately.

tianon commented on Oct 23, 2014 Contributor

Yeah, in the general Linux case this is easier because the permissions
actually can be munged, generally speaking. With "vboxsf", we have to
choose one mapping, and no matter what we pick we're going to alienate a
non‑trivial number of people, so we defaulted to "docker:staff" to at least
make the reasons for the default choice clear and obvious.
Maybe making the exact uid/gid configurable via the persistent storage
"profile" file is the way to go, but that's really just pushing the already
bad situation down on our users (however, with the benefit that they can
actually get themselves to the workaround without a huge amount of effort,
compared to where we're at now with hacks in bootlocal, etc).

fredjean referenced this issue in docker‑library/postgres on Oct 24, 2014


"/var/lib/postgresql/data/global" Under boot2docker on Yosemite #28 Closed

SvenDowideit commented on Oct 24, 2014 Owner


tbh, the right place to do all this is in docker client ‑ which would be the one to create a new share
every time, and then the vm mount would be specific to the container ‑ aaaand, for that we need help
writing code :)

eelcocramer referenced this issue in djmaze/docker‑prosody on Oct 29, 2014


"Error: Error saving to storage" when adding a new user #1 Closed

lukaswelte commented on Oct 29, 2014


Are there any news on this?
I have no really good idea how to solve it, but this issue holds me back from switching to
boot2docker, cause I just cannot run my apache2 docker container..

vmaatta commented on Oct 30, 2014


I might be wrong but I don't think there is really much that can be done on the boot2docker side very
soon. Every container's needs are going to be different and getting the automatic vbox share working
with them all is quite difficult.
If the apache2 container does not need to make hard links to the bind mounted volume you should
be able to use a custom share with access rights suitable for the apache user. Above you can find my
override of the default share but you could also add another one for use with apache
1. Add a share location to the VM: $VBoxManage sharedfolder add "boot2docker-vm" --name
"apacheshare" --hostpath "/Users/username/shares/data/apache" You could just as well do that
via the VirtualBox UI.
2. Mount it in the VM after bootup: mount -t vboxsf -o uid=999,gid=50 apacheshare
/Users/username/shares/data/apache You'll need to find the suitable UID that works for the
apache2 user, if it works.
For multiple bind mounts, and different containers, there might need to be multiple different shares
depending on the needed UIDs.
I've added my version of number 2 to the bootlocal.sh in the VM so it's done automatically on boot. I
don't have the script handy now but I can add it here later.

SvenDowideit commented on Oct 30, 2014 Owner

yup, @vmaatta has it baout right ‑ you could do this by hand, but you probably should consider that
you might be better off working out a different way to acheive it ‑ like using volume containers.

lukaswelte commented on Oct 30, 2014


@vmaatta Would be awesome if you could share your script.
I am not that familiar with virtual box.
@SvenDowideit Volume containers is no real option as we use fig for the development process and
only some people use macs. So it would make the process more painful for the non‑mac users.

bfirsh referenced this issue in docker/compose on Oct 30, 2014


Image orchardup/mysql throws "ERROR: 1005 Can't create table 'db' Closed
(errno: 13)" #142
vmaatta commented on Oct 30, 2014
@lukaswelte Here's my /mnt/sda1/var/lib/boot2docker/bootlocal.sh . You'll need to adapt it to
your needs.
#!/bin/sh

if [ -e /Users/username ]; then
umount /Users
fi

mkdir -p /Users/username/projects
mount -t vboxsf -o uid=999,gid=50 projects /Users/username/projects

@SvenDowideit I'm probably missing the point but… Volume containers are great and should always
be used where they make sense. But with regards to bind mounting something from the host they
don't change anything. They suffer from the same problems any other container does.

SvenDowideit commented on Oct 31, 2014 Owner

@vmaatta yeah ‑ you get around that atm by creating your data container like:
docker run --name data -v /data busybox chmod 777 /data

and then you need to copy that data to your local machine using another container.
I use samba containers for a reason :)

vmaatta commented on Oct 31, 2014


@SvenDowideit yeah, no I don't… need to copy that data to your local machine kinda being the
kicker :). I've used the Samba container too but we can copy data into and out of containers manually
if we want. And that's really what samba is, just a target location(s) to manually copy data in / out.
The real problem is -v host:container . This is the old different workflows discussion that's been
had a couple times. Copying data into a location manually for production, say release workflow, might
be workable with Samba or something like that. But local change‑refresh‑change etc, edit in IDE /
see change reflected by the running container, jump into a different project with different kinds of
files in different locations…
I've yet to see any hint of how is a Samba (or NFS or…) volume container to replace -v
host:container . That's one single data location used in two places, host computer and container.
Not two copies of data, one on the host and other in some Samba share, and worse, maybe even a
third copy where it was copied from a data share folder to an application folder. Manually copying
data around in different containers… What is the workflow, 2 seconds to make a change and 2
minutes to monkey around with rsync. I just can't compute this workflow :).
And the point I was making above: Volume container is not really relevant here. It can't bind mount a
location from the host any different to any other container. It doens't change the problem at hand in
any way, just moves it.

karolsojko commented on Nov 6, 2014


I'm experiencing the same issue. Apache on my container can't write to neither cache or log folders
located in the application that is bind mounted.
I'm using Docker 1.3.1 ‑ is this in any nearest future plans to be fixed ?

vmaatta referenced this issue in moby/moby on Nov 10, 2014


docker volumes w remote daemon #4023 Closed

bradgessler commented on Nov 11, 2014


I've approached this problem with a slightly different work‑around since I'm actually creating new
docker images. Basically, you'll want to change the uid on the user you want to have access the
host‑mounted volume to 1000 .
That means you'll want to add something like
# Sample docker file, mysql is the example login.
RUN usermod -u 1000 mysql

Then everything seems to work OK.

txchen commented on Nov 14, 2014


Any updates on this?
With this bug, postgresql cannot start if the data folder is mounted as volume. Because postgresql
requires data folder to have 700 permission, and if the folder is mounted as volume (boot2docker,
mac), chown/chmod cannot work at all, thus the service failed to start.
IMHO, this is a blocking bug.

vmaatta commented on Nov 14, 2014


@txchen Fixing this issue may not help you anyway. There is more information regarding postgres
specifically in the above comments. It might be best to just run a separate data volume container,
use the volume from there for postgres and handle any mounting and transfer needs between the
data volume container and host.

txchen commented on Nov 14, 2014


@vmaatta thanks for your input! I will try to switch to data volume container solution, although I still
think old style (volume to local folder) is much more convenient.

crucialfelix referenced this issue on Nov 18, 2014


cannot copy files from a bind‑mounted volume #636 Open

splio‑kjoyeux commented on Nov 18, 2014


Hello.
Any news on this ? It's really inconvenient.
Thanks.

theitsmith commented on Nov 19, 2014


I'm experiencing the same issue with Apache 2. In my case, though, I'm not using boot2docker‑‑I'm
running Docker inside a CentOS 7 VirtualBox VM.
With this, the default UID for VirtualBox's Shared Folders (within the VM) is root with a GID of vboxsf.
In order for the VM to write to the Shared Folder, the non‑root user performing the writing must be a
member of the vboxsf group.
The way I worked around this problem of not being able to write to Shared Folders from within the
Docker container was to change the GID of the apache user (defaults to 48) within the Docker
container to match that of the vboxsf group (996, in my case) in the VM.
This allows working around the problem without making any changes to the host or the VM and only
requires one small change within the container, something that should be fairly easy to script.
I know this discussion is related to boot2docker specifically, but there are some situations in which
boot2docker isn't the best choice‑‑in my case, there are some kernel features missing that were
affecting my containers.
As such, I thought it might be important to also consider the affects of this issue outside the context
of boot2docker so that the final solution applies there as well. :)

crucialfelix commented on Nov 19, 2014


I tried vagrant with docker provider and was able to share my data folder and start PostgreSQL. I am
guessing that their folder sharing is more robust. This is always an issue with VMs. And b2d is a vm
with a container inside. Two levels of folder sharing.
Boot2dpcker still seems more appropriate and I can ssh in and play more. But give vagrant a try too.
In the end I'm sure b2d will solve this issue.

tianon commented on Nov 19, 2014 Contributor

If anyone has a solid solution that will actually work long‑term without
extra developer friction (including but not limited to fragile
reconfiguring of external services that are frankly outside our reasonable
realm of control), we're all ears.
Support for "vboxsf" was added as a first‑pass solution to the basic
problem of accessing your data from inside the VM, with full knowledge that
it has limitations that make it not necessarily well‑suited for a number of
use‑cases, this one included (which was why adding it in the first place
was so controversial). It is important to keep in mind that it is strictly
better than what we used to have (which was absolutely nothing).
As has been stated previously, the real solution for this ought to come in
Docker itself, since this is a common problem to anyone whose client and
daemon don't live and play in the same filesystem.

SvenDowideit commented on Nov 19, 2014 Owner

I'm hoping for docker/docker#9250 :)

yuriteixeira commented on Nov 23, 2014


The @bradgessler is being good enough to me. Thanks for this tip, man

joeellis commented on Nov 28, 2014


Been hitting this bug hard in 1.3.2 and not sure what else to do.
For context, I'm trying to mount a data volume container in an apache container under /var/www and
no amount of chown -R www-data:www-data /var/www/myvolume will change these permissions over.
This bug is particularly blocking because the site I'm trying to install there, prestashop, refuses to
complete it's install process until all permissions in it's directory are set to www-data:www-data ,
which I can't do.
Anyone have advice on how to fix this? Or maybe I'm just doing it all wrong?

theitsmith commented on Nov 28, 2014


See my comment above for a workaround:
http://github.com/boot2docker/boot2docker/issues/581#issuecomment‑63724242
This is easily scriptable during container creation (or applied afterwards). I use the following in my
start.sh :

groupmod --gid stat ‑‑format=%g /srv/volume apache

bradgessler commented on Nov 28, 2014


You can also assign uid 1000 to the user www in my workaround above.
Maybe the owner of this thread could close it with a reference to the two workarounds above and
point to an issue in Docker that will permanently fix this problem?
On Nov 28, 2014, at 10 07 AM, theitsmith notifications@github.com wrote:
See my comment above for a workaround:
http://github.com/boot2docker/boot2docker/issues/581#issuecomment‑63724242
This is easily scriptable during container creation (or applied afterwards). I use the following in
my start.sh:
groupmod ‑‑gid stat --format=%g /srv/volume apache

Reply to this email directly or view it on GitHub.

theitsmith commented on Nov 28, 2014


Agreed‑‑UID 1000 will work for b2d. However, this may not work in other environments‑‑in CentOS,
for example, the mounted volume's UID is 0.
VirtualBox's convention is to always set the Shared Folders group to "vboxfs" in the VM. To allow a
VM user to write to the Shared Folder, they advise adding said user to the vboxfs group. Carrying
this same convention into the container, I think, adds additional portability beyond just b2d‑‑I can't
use b2d, for example, due to kernel compatibility issues with the services I need to containerize.
Alternatively, I've had success creating a raw disk image in Shared Folders and then mounting that
disk image directly into the container (though I'm still experimenting some with this). This allows the
container to do pretty much whatever it needs to with the mounted disk image‑‑which includes
choosing it's own file system format, setting user and group permissions, setting SELinux contexts,
and so on.
Using a raw disk image like this is easy to do and allows additional portability between different
hypervisors since neither Docker nor the containers have to care much about how the hypervisor
shares host folders, which host file system is in use, etc, etc.
But going back to the post of @joeellis, prestashop needs write access to its data directory (per
their documentation, prestashop doesn't care about the UID or GID‑‑it just needs to be able to write
to its data directory)‑‑since he's using b2d, setting either the UID or the GID will work.

crucialfelix commented on Nov 28, 2014


I've decided against using docker for postgresql. the data cannot be inside the image, and until I can
easily mount a volume without fear of data loss or user permissions issues, I see no benefit, only
problems. I wasted many days just trying to get postgres to work with an external volume.

tkoeppen commented on Nov 29, 2014


We also tried running postgresql (9.3) with boot2docker (1.3.0) and failed
docker run --rm -i -t -v /Users/<user>/dev/data:/var/lib/postgresql

This small script shows that chown does not work.


echo "DATADIR=$DATADIR"
echo "Initializing Postgres Database at $DATADIR"
id
su ‑c "chown ‑R postgres:postgres $DATADIR"
ls ‑la $DATADIR
su ‑c "chown ‑R 102 106 $DATADIR"
ls ‑la $DATADIR
su postgres sh ‑c "mkdir ‑p $DATADIR/test"
su postgres sh ‑c "id"
The result:
DATADIR=/var/lib/postgresql/9.3/main
Initializing Postgres Database at /var/lib/postgresql/9.3/main
uid=0(root) gid=0(root) groups=0(root)
total 0
drwxr‑xr‑x 1 1000 staff 68 Nov 29 10 43 .
drwxr‑xr‑x 1 1000 staff 102 Nov 29 10 43 ..
total 0
drwxr‑xr‑x 1 1000 staff 68 Nov 29 10 43 .
drwxr‑xr‑x 1 1000 staff 102 Nov 29 10 43 ..
mkdir: cannot create directory '/var/lib/postgresql/9.3/main/test': Permission denied
uid=102(postgres) gid=106(postgres) groups=106(postgres),105(ssl‑cert)
The only workaround I found is to use /tmp as DATADIR.
docker run --rm -i -t -v /tmp:/var/lib/postgresql
which makes of course no sense as I can't persist my postgres data on the host system.

anentropic referenced this issue in kartoza/docker‑postgis on Dec 4, 2014


Struggling to use data volume #6 Closed

paolomainardi commented on Dec 5, 2014 Contributor


+1 same issue here...

kai‑zhong commented on Dec 5, 2014


+1 same issue here.................. ^ ^

paolomainardi commented on Dec 5, 2014 Contributor

Maybe related with this issue:http://superuser.com/questions/640027/why‑cant‑i‑chown‑a‑


virtualbox‑shared‑directory

kai‑zhong commented on Dec 5, 2014


@paolomainardi Thanks. remount is a good solution.

paolomainardi commented on Dec 5, 2014 Contributor

@cnaicc remount is not a solution, containers should have access to multiple uid/gid and they need
to be isolated by the host environment.

benjy commented on Dec 29, 2014


This worked for me, good for your local dev environment. I'm using Boot2Docker.
RUN usermod -u 1000 www-data
tobyhede referenced this issue in whitesmith/fig‑tree on Jan 2, 2015
permissions issue on db volume #3 Open

brunoric commented on Jan 6, 2015


Same problem here. =(

aladagemre commented on Jan 6, 2015


I have the same problem with boot2docker: Docker v1.4.1, fig 1.0.1
It's fine on Linux: Docker v1.4.0, fig 1.0.1
I can't mount rabbitmq or mongodb just for persistence.
Any news on this?

207 items not shown


View more
JulienD commented on Mar 9, 2016
@mnapoli, Issuing the same problem than @emaiax. Trying to install Mysql to a shared directory
with Dinghy make Mysql crash due to a permission problem. I would be interested how you get rid of
the problem. Looking at dinghy there is still an issue about this point codekitchen/dinghy#31

KIVagant commented on Mar 10, 2016


@JulienD, use LXC / LXD and/or Vagrant in OSX.
prigal commented on Mar 10, 2016
@JulienD : I had the same problem, I switched to dlite https://github.com/nlf/dlite, it just works.

paolomainardi commented on Mar 10, 2016 Contributor

Guys to solve all the permissions problems you just have to switch to NFS
instead of vboxfs, it''s not really a matter of dlite or whatever.
Just Google: docker‑machine‑nfs
Il 10/mar/2016 15 04, "Pierre" notifications@github.com ha scritto:
@JulienD https://github.com/JulienD : I had the same problem, I
switched to dlite https://github.com/nlf/dlite, it just works.

Reply to this email directly or view it on GitHub
#581 (comment)
.
2

denji commented on Mar 10, 2016


@paolomainardi Another 3rd module hack boot2docker , it doesn't fix the underlying architectural
problem.

paolomainardi commented on Mar 10, 2016 Contributor


The architecture doesn't have any problem guys, the problem here is vboxfs,
just change it to NFS.
Il 10/mar/2016 16 29, "Denis Denisov" notifications@github.com ha scritto:
@paolomainardi https://github.com/paolomainardi Another 3rd module
hack, it doesn't fix the underlying architectural problem.

Reply to this email directly or view it on GitHub
#581 (comment)
.

JulienD commented on Mar 13, 2016


@paolomainardi, any hint on how to do that ?

paolomainardi commented on Mar 13, 2016 Contributor

Yes, you can automate using this script:


https://github.com/adlogix/docker‑machine‑nfs
It's a a matter of just a few commands.
Il 13/mar/2016 13 39, "Julien Dubreuil" notifications@github.com ha
scritto:
@paolomainardi https://github.com/paolomainardi, any hint on how to do
that ?

Reply to this email directly or view it on GitHub
#581 (comment)
.
binabot commented on Mar 15, 2016
RUN usermod -u 1000 www-data Worked great !
1

agborkowski commented on Mar 17, 2016


@binabot is this command should run inside container ? Im using kitematic and there is not to much
configuration to run command after start the container..

binabot commented on Mar 17, 2016


@agborkowski u can run usermod -u 1000 www-data inside your container OR add RUN usermod -u
1000 www-data into your Dockerfile. Never used kitematic so dont know what to do with your
situation ;) gl

tanhaa commented on Mar 17, 2016


I would really suggest mounting your shared folder as NFS as it's a better solution than individually
changing your uid/gid for the containers that need access. There are several comments in this thread
that point to how to do that.

This was referenced on Mar 20, 2016


fix(docker): updating the Dockerfile and docker‑compose.yml Merged
meanjs/mean#1249
Cannot install cookiecutter‑django with docker on Windows 10 Closed
pydanny/cookiecutter‑django#510
Mount container directory on host docker/compose#3130 Open
Attempting to use to serve laravel ‑ Receiving blank page , plus no info in Closed
logs mikechernev/dockerised‑php#1
ivicaned commented on Apr 8, 2016
I used RUN usermod -u 1000 www-data into Docker file and it worked great.
I am waiting for Docker for OSX which is currently in beta, which should fix this issue with
permissions: https://blog.docker.com/2016/03/docker‑for‑mac‑windows‑beta/
4
thaJeztah referenced this issue in docker‑library/mysql on Apr 16, 2016
Erorr: Could not create unix socket lock file Open
/var/run/mysqld/mysqld.sock.lock. #162
ozbillwang commented on Apr 25, 2016
Thanks, @ivicaned . Your fix is perfect.
You save me the whole day that I stuck on this issue.

ozbillwang commented on Apr 25, 2016


and @ivicaned
Regarding native docker for OSX , I already got token and installed. Yes, there is no this permission
issue with same images.
youanden referenced this issue in arvatoSCM/dockerize‑magento2 on May 17, 2016
var/generation folder cannot be written to in magento2 on OS X using Open
vagrant and boot2docker 1.7.1 #2
raptor235 commented on May 19, 2016
Hey guys could use some help here.. got everything working properly.. I'm also exposing mariadb to
a mounted volume so data is persistent.
The problem is I can set everything up... run docker‑compose build, then docker‑compose up, I see
the db folder gets built by mariadb (those files are restricted to osx root only user) and things are
running fine.
However when I run another docker‑compose build command I run into issues from my php container
complaining about access to the db folder which is setup from mariadb container... I'm not sure if
this has something to do with /etc/exports and permissions of that folder but I can't build anything
else unless I delete the db folder in the root...
I'm not sure if any of the options for docker‑machine‑nfs will help with this issue...
`#docker-machine ip default
web:
build: .
container_name: web
ports:
- "9090:80"
volumes:
- /Users/bartdabek/Sites/hgv/hgv_data/sites/:/code
- ./site.conf:/etc/nginx/conf.d/site.conf
- ./nginx.conf:/etc/nginx/nginx.conf
- ./sites-enabled:/etc/nginx/sites-enabled
links:
- php
#- mariadb
- memcached
php:
container_name: php
build: .
dockerfile: Dockerfile-php
volumes:
- /Users/bartdabek/Sites/hgv/hgv_data/sites/:/code
- ./Tideways.php:/usr/local/lib/php/extensions/no-debug-non-zts-20151012/Tideways.p
links:
#- mariadb
- memcached
memcached:
container_name: memcached
image: sameersbn/memcached:latest
ports:
- "11211:11211"
restart: always
mariadb:
container_name: mariadb
image: mariadb
volumes:
- /Users/bartdabek/Sites/docker/db/:/var/lib/mysql
environment:
DB_ADMIN_PASS: pass
MYSQL_ROOT_PASSWORD: root
ports:
- "3306:3306"
`
raptor235 commented on May 19, 2016 • edited
Basically I need to change permissions back on the db folder to get things to build again
drwxr-xr-x 11 bartdabek staff 374 19 May 00:02 .
drwxr-xr-x 13 bartdabek staff 442 16 May 15:36 ..
-rw-r--r-- 1 bartdabek staff 365 18 May 22:58 Dockerfile
-rw-r--r-- 1 bartdabek staff 267 18 May 22:26 Dockerfile-data
-rw-r--r-- 1 bartdabek staff 1642 18 May 23:06 Dockerfile-php
-rw-r--r--@ 1 bartdabek staff 43748 17 May 21:44 Tideways.php
drwxr-xr-x 11 999 999 374 19 May 00:02 db
-rw-r--r-- 1 bartdabek staff 1006 19 May 00:02 docker-compose.yml
-rw-r--r-- 1 bartdabek staff 743 18 May 23:09 nginx.conf
-rw-r--r-- 1 bartdabek staff 508 16 May 15:38 site.conf
drwxr-xr-x 3 bartdabek staff 102 18 May 23:13 sites-enabled

motin commented on May 19, 2016 • edited


A related workaround, showing how image maintainers can make non‑root users write to locally
mounted folders on osx: docker‑library/mysql#99 (comment)
Check this out. Many seem to have this problem with mysql/mariadb and a workaround has been
around for quite some time ‑ using usermod to change the user/group ids to match the ownership of
the host volume folder:
Step 1: Add the script run.sh somewhere in your project:
#!/bin/bash
set -e

# Script to workaround docker-machine/boot2docker OSX host volume issues:


https://github.com/docker-library/mysql/issues/99
echo '* Working around permission errors locally by making sure that "mysql" uses the
same uid and gid as the host volume'
TARGET_UID=$(stat -c "%u" /var/lib/mysql)
echo '-- Setting mysql user to use uid '$TARGET_UID
usermod -o -u $TARGET_UID mysql || true
TARGET_GID=$(stat -c "%g" /var/lib/mysql)
echo '-- Setting mysql group to use gid '$TARGET_GID
groupmod -o -g $TARGET_GID mysql || true
echo
echo '* Starting MySQL'
chown -R mysql:root /var/run/mysqld/
/entrypoint.sh mysqld --user=mysql --console

Step 2: Change the command in docker‑compose.yml to run this script instead of the ordinary
command.
Example:
# Local database server to mimic a cloud database
localdb:
image: mysql:5.6.27
volumes:
- ./stack/localdb/.db/mysql:/var/lib/mysql:rw
- ./stack/localdb/:/stack/localdb:rw
ports:
- "3306"
environment:
MYSQL_ROOT_PASSWORD: "local-mysql-pass"
command: "/stack/localdb/run.sh"

raptor235 commented on May 19, 2016


Thanks @motin that worked!
However I'm now stuck as the maridb hostname is not longer linked to any of the other containers...
any idea why that default functionality is no longer working?
1

raptor235 commented on May 19, 2016


Nevermind last comment... some sort of hickup working again! Thanks

millerdev added a commit to dimagi/docker‑riak‑cs that referenced this issue on Jun 8, 2016
Fix permissions in set-admin-keys.sh … 00e1b49

cpapidas commented on Jun 15, 2016


I have a container with apache, php and mysql. The solution for me was
usermod ‑u 1000 www‑data
1
carlosmunoz referenced this issue in zanata/zanata‑server on Jun 17, 2016
feat: add docker development images #1211 Merged

jolic commented on Jun 19, 2016 • edited


@cpapidas
Could you please send a small info or a step by step howto how you did this?
cpapidas commented on Jun 19, 2016 • edited
Of course i can @jolic
1. Run your docker image. In my case the command is
$ docker run -it -p 80:80 -v .../Project/PHP:/root/project myImageName

2. Run $ usermod -u 1000 www-data


3. Then if you to see the files' permissions, will be similar to the image bellow

This was referenced on Jun 24, 2016


Postgres data volume is mounted with wrong permissions in Docker OSX Closed
beta moby/moby#22075
wp‑uploads and changing file permissions docker‑library/wordpress#162 Open
Can't change the owner of a file in a running Docker container with an Closed
attached volume in Windows moby/moby#25473
ababushkin commented on Sep 2, 2016
Has anyone worked out a simple ‑ StackOverflow style ‑ solution to this problem yet?
I've tried all the conventional solutions, such as:
1. Creating and configuring the permissions script (as per @motin's) comment
2. Manually running usermod ‑u 1000 mysql in a custom Dockerfile (that inherits from this one)
The only 'feasible' solution I see is a custom project created by @dgraziotin, which deviates from the
main MySQL / MariaDB docker images (https://github.com/dgraziotin/osx‑docker‑mysql). This hardly
seems like an optimal solution, especially if Docker is to get even more rapid adoption throughout the
community.

ernestom commented on Sep 2, 2016


@ababushkin using docker‑machine‑nfs worked for me.
1

yosifkit commented on Sep 2, 2016 • edited Contributor

With docker‑library/mysql#161 you should be able to run mysql as the owner of the directory in
question:
docker run -d -e MYSQL_ROOT_PASSWORD=foobar1234 --user 1000:50 -v /Users/my-user/mysql-data

This will fix the permissions problem, but I cannot guarantee that mysql will always run on a
VirtualBox Shared Folder. MongoDB for example cannot run on the shared folder since the file
system does not support everything it needs.
motin commented on Sep 5, 2016
@ababushkin I have read reports from users of native Docker for Mac that they no longer need any
workaround. I created the permissions script to make it work on Docker Toolbox.

dgraziotin commented on Sep 5, 2016


@ababushkin I confirm that with Docker v1.12.0 for Mac, there is no need to use my ugly workaround
anymore :‑) @motin

ababushkin commented on Sep 5, 2016


@dgraziotin @motin Ouch, looks like I'm still running Docker v1.11.0.
I'll upgrade and give it a whirl.
@yosifkit thanks for the tip!

ababushkin commented on Sep 5, 2016 • edited


@ernestom did you notice any performance improvement for disk sync when using that solution?
Symfony runs really poorly for me at the moment. I have the same issue when using Vagrant and
VirtualBox shared volumes and worked around it by using an NFS mount.
Update: I just noticed that the new version of docker has its own VM and a new OSX dedicated file
system layer. I'll try this out to see if there are still performance issues :)

ernestom commented on Sep 5, 2016


@ababushkin I didn't notice any significant impact in performance with NFS for Docker, and I've
been using it for years on my vagrant/vbox projects without issues.

krasilich commented on Sep 5, 2016


@ababushkin I have been using Docker for Mac for a couple of months now, and unfortunately
performance issues still there for me. My case is ‑ project on local, mounted inside container,
running inside container. For example some project on Symfony, I run some heavy with high I/O
app/console command and waiting tens of minutes or even hours to complete instead of up to 10
minutes on pure local.

ababushkin commented on Sep 12, 2016


@ernestom @krasilich Thats a bummer.
@ernestom do you have a boilerplate docker‑compose file that's using the NFS solution by any
chance?

This was referenced on Sep 12, 2016


[WIP] Clean up images buildkite/docker‑buildkite‑agent#38 Closed
Optimise the Dockerfile for Docker Hub Automated Builds. Closed
mailhog/MailHog#115
dend commented on Oct 24, 2016 • edited
So just to follow‑up here, the issue seems to be gone on the Mac if you install the native Docker beta
(use beta channel here). That obviously doesn't solve the problem much for automated scenarios,
but works well for local dev.

ababushkin commented on Oct 24, 2016


@dend Yup thats correct, permission issues are fixed with Docker for Mac. You don't need to install
the beta version, the stable release fixes it as well.
Unfortunately performance issues have not been fixed. At this stage I've been getting around
performance issues by doing smarter builds of my images (e.g. mounting volumes that don't need
lots of read/write operations by the app)
2
This was referenced on Nov 7, 2016
Add node group/user with gid/uid 1000 and a home directory Merged
nodejs/docker‑node#263
osx cannot start the elasticsearch eddielisc/sc‑elk‑boilerplate#1 Closed
Permission denied for directories created automatically by Dockerfile ADD Closed
command moby/moby#1295
dump.rdb getting set to read‑only docker‑library/redis#44 Open

vschoener commented on Apr 25


Just trying back to use Docke for mac with a web project, the ownership issue is still here..
Files are mounted in root:root and even if I change the ownership to www‑data with a entrypoint, the
new one will be created as root user.
Any idea ? I tried to use USER www‑data before starting the apache process but as you know, www‑
data doesn't have the privilege to start the apache service.. Feel stuck :(

carpnick referenced this issue in visiblevc/wordpress‑starter on May 1


wp‑content folder permission issues #12 Closed

dmitryfleytman added a commit to rbld/rebuild that referenced this issue on May 29


engine: Fix access to mounted volume on Docker Machine for MAC … ad85a7d

bhajojo referenced this issue in nightwatchjs/nightwatch on Jun 27


[contribution] Docker + Nightwatch + Chromedriver + Screen recording Closed
support #1270
TyIsI commented on Sep 28
Ran into this issue as well.
@vmaatta was right in his breakdown, and I'd like to add that the "issue" is the ‑r option in
groupadd/useradd versus adding users without that specific option. The ‑r option creates system
users, which by default (set in /etc/adduser.conf) "starts" with UID/GID 999. (Last in range.)
root@9b3da358b593:/# egrep SYSTEM /etc/adduser.conf
# FIRST_SYSTEM_[GU]ID to LAST_SYSTEM_[GU]ID inclusive is the range for UIDs
FIRST_SYSTEM_UID=100
LAST_SYSTEM_UID=999
FIRST_SYSTEM_GID=100
LAST_SYSTEM_GID=999
For regular users, these would be added starting UID/GID 1000 (matching the UID for the
boot2docker docker user), which is fine for a single user. This also has the implication that if another
user were to be added in a container, that a user with UID 1001 wouldn't be able to access files
through vboxsf.
Right now, I don't know how this could be solved easily, but I'm going to look into this.
Recap: Images create system users that don't match the UID of the docker user in boot2docker.

TyIsI commented on Sep 28


Example work‑around for rabbitmq:
Dockerfile:
FROM rabbitmq:3-management

RUN usermod -u 1000 rabbitmq


RUN groupmod -g 1000 rabbitmq

docker build -t rabbitmq-test .

docker run -d --hostname my-rabbit --name some-rabbit -p 8080:15672 -v


`pwd`/data/rabbitmq/:/var/lib/rabbitmq rabbitmq-test

yosifkit commented on Sep 28 Contributor

@TyIsI, many of the images provided by Docker Official Images (like rabbitmq ) were modified to
allow running as a different user so that you would not need to create or modify the user in the
image. See docker‑library/rabbitmq#60 and the other PRs linked from there. What this means is that
in most instances when using boot2docker on a Mac, you can do something like the following:
$ docker run -d -v /Users/myuser/rabbitdir/:/var/lib/rabbitmq/ --user 1000:50 rabbitmq:3-ma

Some notable exceptions that don't work with the VirtualBox shared folder are MongoDB (docker‑
library/mongo#74 (comment)) and MariaDB 10.1 (docker‑library/percona#42 (comment)).

tupikoff referenced this issue in covex‑nn/docker‑workflow‑symfony on Oct 3


На Mac OS при использовании docker‑machine появляется проблема Closed
#1

Potrebbero piacerti anche