Skip to content

Commit

Permalink
Closes KTH-SML#18
Browse files Browse the repository at this point in the history
  • Loading branch information
kaarmu committed Nov 21, 2023
1 parent 4b2c5cc commit 4409730
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/tutorials/5_more_docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ terminal.
For Ubuntu you can install Docker Engine by following
[these](https://docs.docker.com/engine/install/ubuntu/) steps.

A quick and easy way (but not recommended) is to run
```
sudo util/get-docker
```
This will download and run a script that installs Docker Engine for you. Read
more [here](https://docs.docker.com/engine/install/ubuntu/#install-using-the-convenience-script).

**Installing Docker Desktop**

Since a huge part of the SVEA workflow is to simulate before moving onto
Expand Down
16 changes: 16 additions & 0 deletions util/get-docker
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#! /bin/sh
#
# Install Docker using the convenience script.
#
# This may not be the best way to install Docker. We provide it here as a fast
# way to get Docker installed on Ubuntu.
#
# OBS: You must run this script as root.
#
# Author: Kaj Munhoz Arfvidsson

. "$(dirname "$0")/config.sh"

istrue DEBUG && fn="echo" || fn="exec"

"$fn" curl -fsSL https://get.docker.com | sh

0 comments on commit 4409730

Please sign in to comment.