You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by dm...@apache.org on 2020/02/04 12:07:42 UTC

[incubator-dlab] branch DLAB-1326 created (now 0693d6d)

This is an automated email from the ASF dual-hosted git repository.

dmysakovets pushed a change to branch DLAB-1326
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git.


      at 0693d6d  [DLAB-1326] Fixed docker version issue

This branch includes the following new commits:

     new 0693d6d  [DLAB-1326] Fixed docker version issue

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org


[incubator-dlab] 01/01: [DLAB-1326] Fixed docker version issue

Posted by dm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dmysakovets pushed a commit to branch DLAB-1326
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git

commit 0693d6d359d55320f81fc729f9a45ab0b334b9ec
Author: Demyan Mysakovets <de...@gmail.com>
AuthorDate: Tue Feb 4 14:07:27 2020 +0200

    [DLAB-1326] Fixed docker version issue
---
 infrastructure-provisioning/src/general/lib/os/fab.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/infrastructure-provisioning/src/general/lib/os/fab.py b/infrastructure-provisioning/src/general/lib/os/fab.py
index f3aa2c6..47ef676 100644
--- a/infrastructure-provisioning/src/general/lib/os/fab.py
+++ b/infrastructure-provisioning/src/general/lib/os/fab.py
@@ -202,7 +202,7 @@ def configure_docker(os_user):
                   stable"')
             sudo('apt-get update')
             sudo('apt-cache policy docker-ce')
-            sudo('apt-get install -y docker-ce={}~ce-0~ubuntu'.format(docker_version))
+            sudo('apt-get install -y docker-ce={}~ce~3-0~ubuntu'.format(docker_version))
             sudo('touch /home/{}/.ensure_dir/docker_ensured'.format(os_user))
     except Exception as err:
         print('Failed to configure Docker:', str(err))


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org