Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
docker-baseimage-ubuntu
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
JetBrains YouTrack
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Prosper
docker-baseimage-ubuntu
Commits
18764d58
Commit
18764d58
authored
3 years ago
by
Griefed
Browse files
Options
Downloads
Patches
Plain Diff
refactor: Rename default user. Hopefully ensure aliases are set in resulting container
parent
3605a4fb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Dockerfile
+6
-5
6 additions, 5 deletions
Dockerfile
root/etc/cont-init.d/10-adduser
+8
-8
8 additions, 8 deletions
root/etc/cont-init.d/10-adduser
root/etc/profile.d/00-aliases.sh
+2
-0
2 additions, 0 deletions
root/etc/profile.d/00-aliases.sh
with
16 additions
and
13 deletions
Dockerfile
+
6
−
5
View file @
18764d58
...
...
@@ -93,6 +93,7 @@ RUN \
>
/run/systemd/container
&&
\
echo
"**** Install apt-utils and locales ****"
&&
\
apt-get update
&&
\
apt-get upgrade
-y
&&
\
apt-get
install
-y
\
apt-utils
\
locales
&&
\
...
...
@@ -104,22 +105,22 @@ RUN \
tzdata
&&
\
echo
"**** Generate locale ****"
&&
\
locale-gen en_US.UTF-8
&&
\
echo
"**** Create
abc
user and make our folders ****"
&&
\
useradd
-u
911
-U
-d
/config
-s
/bin/false
abc
&&
\
usermod
-G
users
abc
&&
\
echo
"**** Create
grfd
user and make our folders ****"
&&
\
useradd
-u
911
-U
-d
/config
-s
/bin/false
grfd
&&
\
usermod
-G
users
grfd
&&
\
mkdir
-p
\
/app
\
/config
\
/data
\
/defaults
&&
\
mv
/usr/bin/with-contenv /usr/bin/with-contenvb
&&
\
patch
-u
/etc/s6/init/init-stage2
-i
/tmp/patch/etc/s6/init/init-stage2.patch
&&
\
echo
"**** Create our bash-aliases ****"
&&
\
alias
ll
=
"LC_COLLATE=C ls -ahl --group-directories-first --color=auto"
&&
\
alias
..
=
"cd .."
&&
\
echo
"**** Cleanup ****"
&&
\
apt-get remove
-y
patch
&&
\
apt-get autoremove
&&
\
apt-get autoremove
-y
&&
\
apt-get autoclean
-y
apt-get clean && \
rm -rf \
/tmp/* \
...
...
This diff is collapsed.
Click to expand it.
root/etc/cont-init.d/10-adduser
+
8
−
8
View file @
18764d58
...
...
@@ -3,8 +3,8 @@
PUID
=
${
PUID
:-
911
}
PGID
=
${
PGID
:-
911
}
groupmod
-o
-g
"
$PGID
"
abc
usermod
-o
-u
"
$PUID
"
abc
groupmod
-o
-g
"
$PGID
"
grfd
usermod
-o
-u
"
$PUID
"
grfd
echo
'
-------------------------------------
...
...
@@ -34,8 +34,8 @@ echo '
GID/UID
-------------------------------------'
echo
"
User uid:
$(
id
-u
abc
)
User gid:
$(
id
-g
abc
)
User uid:
$(
id
-u
grfd
)
User gid:
$(
id
-g
grfd
)
-------------------------------------
"
...
...
@@ -55,7 +55,7 @@ Some apps might not behave correctly without this
'
fi
chown
abc:abc
/app
chown
abc:abc
/config
chown
abc:abc
/data
chown
abc:abc
/defaults
chown
grfd:grfd
/app
chown
grfd:grfd
/config
chown
grfd:grfd
/data
chown
grfd:grfd
/defaults
This diff is collapsed.
Click to expand it.
root/etc/profile.d/00-aliases.sh
0 → 100644
+
2
−
0
View file @
18764d58
alias
ll
=
"LC_COLLATE=C ls -ahl --group-directories-first --color=auto"
alias
..
=
"cd .."
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment