Skip to content

Commit bdc272b

Browse files
fix(docker): linked to new docs
1 parent 1bc2327 commit bdc272b

File tree

4 files changed

+4
-163
lines changed

4 files changed

+4
-163
lines changed

_posts/2021-04-17-traefik-portainer-ssl.md

Lines changed: 1 addition & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -15,49 +15,7 @@ Today, we're going to use SSL for everything. No more self-sign certs. No more
1515

1616
## Docker Setup
1717

18-
### Install Docker
19-
20-
```bash
21-
sudo apt-get update
22-
sudo apt-get install \
23-
apt-transport-https \
24-
ca-certificates \
25-
curl \
26-
gnupg \
27-
lsb-release
28-
```
29-
30-
```bash
31-
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
32-
```
33-
34-
```bash
35-
echo \
36-
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
37-
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
38-
```
39-
40-
```bash
41-
sudo apt-get update
42-
sudo apt-get install docker-ce docker-ce-cli containerd.io
43-
```
44-
45-
Are you installing Docker in a LXC container and seeing an error? [Read this.](https://stackoverflow.com/questions/22085657/can-docker-run-inside-a-linux-container/25885682)
46-
47-
```bash
48-
sudo usermod -aG docker $USER
49-
```
50-
You'll need to log out then back in to apply this
51-
52-
### Install Docker Compose
53-
54-
```bash
55-
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
56-
```
57-
58-
```bash
59-
sudo chmod +x /usr/local/bin/docker-compose
60-
```
18+
See [this post](https://techno-tim.github.io/posts/docker-compose-install/) on how to install `docker` and `docker-compose`
6119

6220
## Traefik
6321

_posts/2021-06-05-authelia-traefik.md

Lines changed: 1 addition & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -19,46 +19,7 @@ Authelia will work with other reverse proxies but I used Traefik. If you want t
1919

2020
## Docker Setup
2121

22-
### Install Docker
23-
```bash
24-
sudo apt-get update
25-
sudo apt-get install \
26-
apt-transport-https \
27-
ca-certificates \
28-
curl \
29-
gnupg \
30-
lsb-release
31-
```
32-
33-
```bash
34-
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
35-
```
36-
37-
```bash
38-
echo \
39-
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
40-
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
41-
```
42-
43-
```bash
44-
sudo apt-get update
45-
sudo apt-get install docker-ce docker-ce-cli containerd.io
46-
```
47-
48-
```bash
49-
sudo usermod -aG docker $USER
50-
```
51-
You'll need to log out then back in to apply this
52-
53-
### Install Docker Compose
54-
55-
```bash
56-
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
57-
```
58-
59-
```bash
60-
sudo chmod +x /usr/local/bin/docker-compose
61-
```
22+
See [this post](https://techno-tim.github.io/posts/docker-compose-install/) on how to install `docker` and `docker-compose`
6223

6324
## Authelia
6425

_posts/2021-06-20-webtop-container.md

Lines changed: 1 addition & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -14,46 +14,7 @@ Have you ever thought about running a Linux desktop inside of a container? Me n
1414

1515
## Docker Setup
1616

17-
### Install Docker
18-
```bash
19-
sudo apt-get update
20-
sudo apt-get install \
21-
apt-transport-https \
22-
ca-certificates \
23-
curl \
24-
gnupg \
25-
lsb-release
26-
```
27-
28-
```bash
29-
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
30-
```
31-
32-
```bash
33-
echo \
34-
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
35-
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
36-
```
37-
38-
```bash
39-
sudo apt-get update
40-
sudo apt-get install docker-ce docker-ce-cli containerd.io
41-
```
42-
43-
```bash
44-
sudo usermod -aG docker $USER
45-
```
46-
You'll need to log out then back in to apply this
47-
48-
### Install Docker Compose
49-
50-
```bash
51-
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
52-
```
53-
54-
```bash
55-
sudo chmod +x /usr/local/bin/docker-compose
56-
```
17+
See [this post](https://techno-tim.github.io/posts/docker-compose-install/) on how to install `docker` and `docker-compose`
5718

5819
## Webtop
5920

_posts/2021-08-14-open-source-linktree-alt.md

Lines changed: 1 addition & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -19,46 +19,7 @@ You can find the LittleLink-Server repo [here](https://github.com/techno-tim/lit
1919

2020
## Docker Setup
2121

22-
### Install Docker
23-
```bash
24-
sudo apt-get update
25-
sudo apt-get install \
26-
apt-transport-https \
27-
ca-certificates \
28-
curl \
29-
gnupg \
30-
lsb-release
31-
```
32-
33-
```bash
34-
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
35-
```
36-
37-
```bash
38-
echo \
39-
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
40-
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
41-
```
42-
43-
```bash
44-
sudo apt-get update
45-
sudo apt-get install docker-ce docker-ce-cli containerd.io
46-
```
47-
48-
```bash
49-
sudo usermod -aG docker $USER
50-
```
51-
You'll need to log out then back in to apply this
52-
53-
### Install Docker Compose
54-
55-
```bash
56-
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
57-
```
58-
59-
```bash
60-
sudo chmod +x /usr/local/bin/docker-compose
61-
```
22+
See [this post](https://techno-tim.github.io/posts/docker-compose-install/) on how to install `docker` and `docker-compose`
6223

6324
## Running the container
6425

0 commit comments

Comments
 (0)