mirror of
https://github.com/linuxserver/docker-code-server.git
synced 2024-11-23 04:25:40 +01:00
18 lines
419 B
Plaintext
18 lines
419 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
mkdir -p /config/{extensions,data,workspace,.ssh}
|
|
|
|
if [ -n "${SUDO_PASSWORD}" ]; then
|
|
echo "setting up sudo access"
|
|
if [ ! $(grep -c 'abc' /etc/sudoers) ]; then
|
|
echo "adding abc to sudoers"
|
|
echo "abc ALL=(ALL:ALL) ALL" >> /etc/sudoers
|
|
fi
|
|
echo "setting sudo password"
|
|
echo -e "${SUDO_PASSWORD}\n${SUDO_PASSWORD}" | passwd abc
|
|
fi
|
|
|
|
# permissions
|
|
chown -R abc:abc \
|
|
/config
|