mirror of
/repos/baseimage-docker.git
synced 2025-12-30 08:01:31 +01:00
Change the docker_env group ID from 1000 to 8377.
This commit is contained in:
parent
5e5794c528
commit
0de8640bac
@ -1,6 +1,7 @@
|
|||||||
## 0.9.13 (not yet released)
|
## 0.9.13 (not yet released)
|
||||||
|
|
||||||
* Fixed `my_init` not properly exiting with a non-zero exit status when Ctrl-C is pressed.
|
* Fixed `my_init` not properly exiting with a non-zero exit status when Ctrl-C is pressed.
|
||||||
|
* The GID of the `docker_env` group has been changed from 1000 to 8377, in order to avoid GID conflicts with any groups that you might want to introduce inside the container.
|
||||||
|
|
||||||
## 0.9.12 (release date: 2014-07-24)
|
## 0.9.12 (release date: 2014-07-24)
|
||||||
|
|
||||||
|
|||||||
@ -11,7 +11,7 @@ touch /etc/container_environment.sh
|
|||||||
touch /etc/container_environment.json
|
touch /etc/container_environment.json
|
||||||
chmod 700 /etc/container_environment
|
chmod 700 /etc/container_environment
|
||||||
|
|
||||||
groupadd docker_env
|
groupadd -g 8377 docker_env
|
||||||
chown :docker_env /etc/container_environment.sh /etc/container_environment.json
|
chown :docker_env /etc/container_environment.sh /etc/container_environment.json
|
||||||
chmod 640 /etc/container_environment.sh /etc/container_environment.json
|
chmod 640 /etc/container_environment.sh /etc/container_environment.json
|
||||||
ln -s /etc/container_environment.sh /etc/profile.d/
|
ln -s /etc/container_environment.sh /etc/profile.d/
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user