Commit 00713970 authored by Alexandre Delanoë's avatar Alexandre Delanoë

[FIX] install dockers rights.

parent 471aa53a
Pipeline #19 canceled with stage
#!/bin/bash
if docker version;
then
echo "Docker installed, ok"
else
curl -sSL https://get.docker.com/ | sh
echo "Docker has been installed"
echo "Configure your user rights:"
echo " sudo usermod -a -G docker $USER"
fi
curl -sSL https://get.haskellstack.org/ | sh
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment