add docker-compose to stretch config

此提交包含在:
2018-08-19 18:53:47 +00:00
父節點 df1839f9d2
當前提交 0c0d533269

查看文件

@@ -1,6 +1,9 @@
#!/bin/bash #!/bin/bash
function do_debian_stretch_setup { function do_debian_stretch_setup {
git config credential.helper store
# FIXME assumes amd64 # FIXME assumes amd64
export DEBIAN_FRONTEND=noninteractive export DEBIAN_FRONTEND=noninteractive
@@ -34,7 +37,7 @@ function do_debian_stretch_setup {
$(lsb_release -cs) \ $(lsb_release -cs) \
stable" stable"
sudo apt update sudo apt update
sudo apt install -y docker-ce sudo apt install -y docker-ce docker-compose
fi fi
} }