From a205a1eaaa95c3d8c8d5bc91ed0bba066c6bc314 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 17 Jun 2021 00:04:40 +0100 Subject: [PATCH] apt-get -y --- docker-configs/docker_install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-configs/docker_install.sh b/docker-configs/docker_install.sh index 4edfa24..c789cfd 100755 --- a/docker-configs/docker_install.sh +++ b/docker-configs/docker_install.sh @@ -3,9 +3,9 @@ echo FreeDMR Docker installer... echo Installing required packages... -apt install docker.io && -apt install docker-compose && -apt install conntrack && +apt-get -y install docker.io && +#apt-get -y install docker-compose && +apt-get -y install conntrack && echo Set userland-proxy to false... echo '{ "userland-proxy": false}' > /etc/docker/daemon.json &&