Last active
March 17, 2017 08:12
-
-
Save molivier/a663eb73a87894e05ecfd39d5f50f0c5 to your computer and use it in GitHub Desktop.
Revisions
-
molivier revised this gist
Mar 17, 2017 . 1 changed file with 2 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -19,6 +19,5 @@ auto eth1 allow-hotplug eth1 iface eth1 inet dhcp" >> /etc/network/interfaces # Activate second interface ifup eth1 -
molivier revised this gist
Mar 16, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -20,5 +20,5 @@ allow-hotplug eth1 iface eth1 inet dhcp" >> /etc/network/interfaces # Update and Reboot apt update && apt upgrade -y reboot -
molivier revised this gist
Mar 16, 2017 . 1 changed file with 5 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -17,4 +17,8 @@ apt install -y docker-ce echo " auto eth1 allow-hotplug eth1 iface eth1 inet dhcp" >> /etc/network/interfaces # Update and Reboot apt update && apt upgrade reboot -
molivier created this gist
Mar 16, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ #!/usr/bin/env bash # Install packages to allow apt to use a repository over HTTPS apt install -y apt-transport-https ca-certificates curl software-properties-common # Add Docker’s official GPG key curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - # Add Docker Repository add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable" # Update and Install Docker apt update apt install -y docker-ce # Add private network interface to /etc/network/interfaces echo " auto eth1 allow-hotplug eth1 iface eth1 inet dhcp" >> /etc/network/interfaces