Update 'test/setup.sh'

This commit is contained in:
sthope 2021-08-28 18:39:21 +02:00
parent c8f581266a
commit 9fe2653dcd

View File

@ -24,24 +24,20 @@ function msg() {
}
# Prepare container OS
msg "Setting up container OS..."
sed -i "/$LANG/ s/\(^# \)//" /etc/locale.gen
locale-gen >/dev/null
apt-get -y purge openssh-{client,server} >/dev/null
apt-get autoremove >/dev/null
# Update container OS
msg "Updating container OS..."
apt-get update >/dev/null
apt-get -qqy upgrade &>/dev/null
# Install prerequisites
msg "Installing prerequisites..."
apt-get -qqy install \
curl &>/dev/null
# Customize Docker configuration
msg "Customizing Docker..."
DOCKER_CONFIG_PATH='/etc/docker/daemon.json'
mkdir -p $(dirname $DOCKER_CONFIG_PATH)
cat >$DOCKER_CONFIG_PATH <<'EOF'
@ -51,18 +47,15 @@ cat >$DOCKER_CONFIG_PATH <<'EOF'
EOF
# Install Docker
msg "Installing Docker..."
sh <(curl -sSL https://get.docker.com) &>/dev/null
# Configuring docker-compose
msg "Configuring docker-compose..."
LINUXSERVER_DOCKERCOMPOSE='https://raw.githubusercontent.com/linuxserver/docker-docker-compose/master/run.sh'
DOCKERCOMPOSE_LOCATION='/usr/local/bin/docker-compose'
curl -L --fail $LINUXSERVER_DOCKERCOMPOSE -o $DOCKERCOMPOSE_LOCATION &>/dev/null
chmod +x $DOCKERCOMPOSE_LOCATION
# Installing Portainer,VSCode,Watchtower docker-compose
msg "Configuring Portainer,VSCode,Watchtower"
FOLDER_PORTAINER='/docker/portainer'
FOLDER_VSCODE='/docker/vscode'
STACK_OLD='/docker-compose.yml'
@ -73,7 +66,6 @@ mv $STACK_OLD $STACK_NEW
docker-compose up -d $STACK_NEW &>/dev/null
# Customize container
msg "Customizing container..."
rm /etc/motd # Remove message of the day after login
rm /etc/update-motd.d/10-uname # Remove kernel information after login
touch ~/.hushlogin # Remove 'Last login: ' and mail notification after login
@ -88,5 +80,4 @@ systemctl daemon-reload
systemctl restart $(basename $(dirname $GETTY_OVERRIDE) | sed 's/\.d//')
# Cleanup container
msg "Cleanup..."
rm -rf /setup.sh /var/{cache,log}/* /var/lib/apt/lists/*