You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
313 B
Bash
14 lines
313 B
Bash
7 years ago
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
|
||
|
apt-get -y install gnupg2
|
||
|
apt-key add docker.key # TODO debootstrap has to push key in reach
|
||
|
echo 'deb https://download.docker.com/linux/debian stretch stable' > /etc/apt/sources.list.d/docker.list
|
||
|
apt-get update
|
||
|
apt-get -y --purge autoremove gnupg2
|
||
|
|
||
|
apt install \
|
||
|
systemd \
|
||
|
dropbear
|