mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
763d839261
This implements chown support on Windows. Built-in accounts as well as accounts included in the SAM database of the container are supported. NOTE: IDPair is now named Identity and IDMappings is now named IdentityMapping. The following are valid examples: ADD --chown=Guest . <some directory> COPY --chown=Administrator . <some directory> COPY --chown=Guests . <some directory> COPY --chown=ContainerUser . <some directory> On Windows an owner is only granted the permission to read the security descriptor and read/write the discretionary access control list. This fix also grants read/write and execute permissions to the owner. Signed-off-by: Salahuddin Khan <salah@docker.com>
20 lines
482 B
Bash
20 lines
482 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
CONTAINER_UTILITY_COMMIT=e004a1415a433447369e315b9d7df357102be0d2 # v0.9.0
|
|
|
|
(
|
|
git clone https://github.com/docker/windows-container-utility.git "$GOPATH/src/github.com/docker/windows-container-utility"
|
|
cd "$GOPATH/src/github.com/docker/windows-container-utility"
|
|
git checkout -q "$CONTAINER_UTILITY_COMMIT"
|
|
|
|
echo Building: ${DEST}/containerutility.exe
|
|
|
|
(
|
|
make
|
|
)
|
|
|
|
mkdir -p ${ABS_DEST}
|
|
|
|
cp containerutility.exe ${ABS_DEST}/containerutility.exe
|
|
)
|