-
-
Save nikallass/e5124756d0e2bdcf8981827f3ed40bcc to your computer and use it in GitHub Desktop.
#!/bin/bash | |
# update apt-get | |
export DEBIAN_FRONTEND="noninteractive" | |
sudo apt-get update | |
# remove previously installed Docker | |
sudo apt-get remove docker docker-engine docker.io* lxc-docker* | |
# install dependencies 4 cert | |
sudo apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common | |
# add Docker repo gpg key | |
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - | |
echo "deb https://download.docker.com/linux/debian stretch stable" >> /etc/apt/sources.list | |
sudo apt-get update | |
# install Docker | |
sudo apt-get install docker-ce | |
# run Hellow World image | |
sudo docker run hello-world | |
# manage Docker as a non-root user | |
sudo groupadd docker | |
sudo usermod -aG docker $USER | |
# configure Docker to start on boot | |
sudo systemctl enable docker |
Thanks for this one.
Thanks...
Running this script met a small question, with --fix-missing option solved this problem .
Amazing, thanks for sharing 🌮 🎉
kept getting permission denied at editing apt/sources i know it should be an extra entry under apt/sources.list.d and
sudo touch create file docker_ce.list first than echo "deb [arch=amd64] https://download.docker.com/linux/debian stretch stable" >> /etc/apt/sources.list.d/docker_ce.list ..
sudo gpasswd -a $USER docker ( -d to remove)
...to run docker without sudo but keep in mind it is a risk (https://www.projectatomic.io/blog/2015/08/why-we-dont-let-non-root-users-run-docker-in-centos-fedora-or-rhel/)
(docker run -ti --privileged -v /:/host fedora chroot /host | ouch)
i have a small 1.3Ghz x2 /6GB mem notebook and i didn't want to install stuff like mutillidae and mess around with versions of php potentially corrupt my vhosts and site on apache , that's why i've chosen to set up docker i also know there's a mutillidae img, webgoat etc that runs ok out of the box
Thanks!
I'm very happy!
Thanks my friend
I keep getting following error
Setting up docker-ce (17.12.1
ce-0debian) ...
Job for docker.service failed because the control process exited with error code.
See "systemctl status docker.service" and "journalctl -xe" for details.
invoke-rc.d: initscript docker, action "start" failed.
● docker.service - Docker Application Container Engine
Loaded: loaded (/lib/systemd/system/docker.service; disabled; vendor preset: disabled)
Active: activating (auto-restart) (Result: exit-code) since Sat 2018-03-03 22:58:16 +08; 10ms ago
Docs: https://docs.docker.com
Process: 32576 ExecStart=/usr/bin/dockerd -H fd:// (code=exited, status=1/FAILURE)
Main PID: 32576 (code=exited, status=1/FAILURE)
dpkg: error processing package docker-ce (--configure):
installed docker-ce package post-installation script subprocess returned error exit status 1
Good stuff, mate!
great, it works well, thanks
thanks a lot...
worked very well
thanks
I really appreciate your help. It works fine! :D
Thanks, worked like a charm!
thanks 👍
and can use 2018.3a or 2018.2 ...etc
change line 16 from
echo "deb https://download.docker.com/linux/debian stretch stable" >> /etc/apt/sources.list
to
echo "deb [arch=amd64] https://download.docker.com/linux/debian stretch stable" >> /etc/apt/sources.list
so it doesn't break on multilib systems, or else you will get the following error.
"N: Skipping acquire of configured file 'stable/binary-i386/Packages' as repository 'https://download.docker.com/linux/debian stretch InRelease' doesn't support architecture 'i386'"