Skip to content

Commit

Permalink
docker installation
Browse files Browse the repository at this point in the history
  • Loading branch information
herveleclerc committed Oct 16, 2024
1 parent ae1d490 commit 92ff5b0
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions labs/liascript/labs-docker-fundamentals.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,35 @@ logo: https://assets.alterway.fr/2021/01/strong-mind.png
Docker Container Fundamentals
```

## 0. Docker installation

```bash
# Get installer

curl -o install.sh -L get.docker.com

# launch installer

bash install.sh

# Add ubuntu user to docker group

sudo usermod -aG docker ubuntu


# Reload user group

newgrp docker


# Test installation

docker run --rm -ti wernight/funbox nyancat


```


## 1. The Container Lifecycle

```text
Expand Down

0 comments on commit 92ff5b0

Please sign in to comment.