diff --git a/404.html b/404.html
index 1767566..fe91601 100644
--- a/404.html
+++ b/404.html
@@ -16,7 +16,7 @@ permalink: /404.html
diff --git a/_data/mydockercontainers.yml b/_data/mydockercontainers.yml
index 12fa9e5..9fa881e 100644
--- a/_data/mydockercontainers.yml
+++ b/_data/mydockercontainers.yml
@@ -1,5 +1,5 @@
-- name: tuya_doorlock
-- name: randompwd
-- name: randomport
-- name: mqtt-broker
-- name: dckrtmplt
\ No newline at end of file
+tuya_doorlock:
+randompwd:
+randomport:
+mqtt-broker:
+dckrtmplt:
\ No newline at end of file
diff --git a/_includes/header.html b/_includes/header.html
index 5231740..76268d3 100644
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -4,8 +4,8 @@
- Home
- - All Posts
- - Portainer Stacks
+ - All Posts
+ - Portainer Stacks
- Proxmox LXC's
- My Docker Containers
- Search
diff --git a/_layouts/mydockerfile.html b/_layouts/mydockerfile.html
index ec974e1..01bcb94 100644
--- a/_layouts/mydockerfile.html
+++ b/_layouts/mydockerfile.html
@@ -45,7 +45,7 @@ layout: default
diff --git a/_pages/about.md b/_pages/about.md
index ebc9af7..e9f06f2 100644
--- a/_pages/about.md
+++ b/_pages/about.md
@@ -19,4 +19,8 @@ This website is a documentation of my adventures with electronics in general. Th
```
-Hello and welcome to my website, where I explorer the world of electronics and technology.
\ No newline at end of file
+Hello and welcome to my website, where I explorer the world of electronics and technology.
+
+
+He said "You are the chosen one, the one who will deliver the message, a message of hope for those who choose to hear it and a warning for those who do not."
+Me, the chosen one, they chose me and I didn't even graduate from fuckin' high school
\ No newline at end of file
diff --git a/_posts/2021-07-25-jekyll-website.md b/_posts/2021-07-25-jekyll-website.md
new file mode 100644
index 0000000..44c8abf
--- /dev/null
+++ b/_posts/2021-07-25-jekyll-website.md
@@ -0,0 +1,63 @@
+---
+layout: post
+title: "Jekyll Docker Website"
+description: ""
+author: sthope
+image:
+categories: [ Docker, Jekyll ]
+comments: true
+---
+# Portainer Stack
+
+```yaml
+---
+version: "3.8"
+services:
+ jekyll:
+ image: "jekyll/jekyll:latest"
+ container_name: "jekyll"
+ hostname: "jekyll"
+ command: "jekyll serve --force_polling"
+ network_mode: "bridge"
+ environment:
+ - "TZ=Europe/Amsterdam"
+ volumes:
+ - "/edit/this:/srv/jekyll"
+ ports:
+ - "4000:4000"
+ restart: "unless-stopped"
+
+volumes:
+ jekyll:
+ external: false
+```
+Create folder with eg: ```mkdir -p ~/jekyll``` and change the Volume
+# Portainer Stack with Volumes
+```yaml
+---
+version: "3.8"
+services:
+ jekyll:
+ image: "jekyll/jekyll:latest"
+ container_name: "jekyll"
+ hostname: "jekyll"
+ command: "jekyll serve --force_polling"
+ network_mode: "bridge"
+ environment:
+ - "TZ=Europe/Amsterdam"
+ volumes:
+ - "jekyll:/srv/jekyll"
+ ports:
+ - "4000:4000"
+ restart: "unless-stopped"
+
+volumes:
+ jekyll:
+ external: false
+```
+** Good for testing, not recommended for production. **
+
+```
+sudo docker exec -it jekyll /bin/sh -c 'jekyll new /srv/jekyll/ --blank --force'
+```
+Send this from the terminal to initiate a blank website.
diff --git a/_posts/2021-08-02-dockerfile-and-github.md b/_posts/2021-08-02-dockerfile-and-github.md
index a44da2b..4edd0a9 100644
--- a/_posts/2021-08-02-dockerfile-and-github.md
+++ b/_posts/2021-08-02-dockerfile-and-github.md
@@ -7,7 +7,7 @@ image: "dockergithub.png"
categories: [ Docker, Github ]
github_create_token: 'https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token#creating-a-token'
github_auth: 'https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry#authenticating-to-the-container-registry'
-docker_tempalte_repo: 'https://github.com/Sthopeless/dckrtmplt'
+docker_template_repo: 'https://github.com/Sthopeless/dckrtmplt'
comments: true
---
@@ -29,7 +29,7 @@ echo $CR_PAT | docker login ghcr.io -u USERNAME --password-stdin
## Setup container files
-1. [Download this repository]({{page.docker_tempalte_repo}})
+1. [Download this repository]({{page.docker_template_repo}})
2. Open terminal, go to the repo location (eg: ~/Documents/dckrtmplt) and do:
```
docker build -t dckrtmplt . ; \
diff --git a/_posts/2021-08-04-doublecommander-docker-container.md b/_posts/2021-08-04-doublecommander-docker-container.md
index a0662fd..00816f0 100644
--- a/_posts/2021-08-04-doublecommander-docker-container.md
+++ b/_posts/2021-08-04-doublecommander-docker-container.md
@@ -12,7 +12,7 @@ doublecmd_dark: "https://doublecmd.sourceforge.io/gallery/images/MainWindowDark.
---

-
+
```
---
version: "3.8"
diff --git a/_posts/2021-08-04-firefox-docker-container.md b/_posts/2021-08-04-firefox-docker-container.md
index 4577459..4a69937 100644
--- a/_posts/2021-08-04-firefox-docker-container.md
+++ b/_posts/2021-08-04-firefox-docker-container.md
@@ -7,7 +7,7 @@ image: "firefox.png"
categories: [ Docker, Portainer, Stack, LinuxServer ]
comments: true
logo: "/assets/images/doublecommander.png"
-stack: "https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master/firefox.yml"
+stack: "https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/src/branch/master/firefox.yml"
---
@@ -42,7 +42,7 @@ volumes:
Use `Repository URL`:
```
-https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master/firefox.yml
+https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/src/branch/master/firefox.yml
```
diff --git a/_posts/2021-08-04-htpc.md b/_posts/2021-08-04-htpc.md
index 4547865..452e114 100644
--- a/_posts/2021-08-04-htpc.md
+++ b/_posts/2021-08-04-htpc.md
@@ -6,8 +6,8 @@ author: sthope
image:
categories: [ Docker, Portainer, Stack, LinuxServer, HTPC ]
comments: true
-env_file: https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master/htpc/config.env
-stack_file: https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master/htpc/docker-compose.yml
+env_file: https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/src/branch/master/htpc/config.env
+stack_file: https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/src/branch/master/htpc/docker-compose.yml
htpc_example: /assets/images/htpc_example.png
---
***Containers:***
@@ -32,7 +32,7 @@ Download or copy the contents from [this file]({{page.env_file}}) and edit with

**Repository URL:**
-```https://git.sthope.dev/sthope/docker_portainer_stacks```
+```https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks```
**Compose path:**
```htpc/docker-compose.yml```
diff --git a/_posts/2021-08-08-docker-nginx.md b/_posts/2021-08-08-docker-nginx.md
index c82e8af..d39e7e7 100644
--- a/_posts/2021-08-08-docker-nginx.md
+++ b/_posts/2021-08-08-docker-nginx.md
@@ -5,7 +5,7 @@ description: "Docker NGINX & Authelia"
author: sthope
image: "nginx-logo.png"
categories: [ Docker, NGINX, LinuxServer ]
-env_file: https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master/nginx/nginx.env
+env_file: https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/src/branch/master/nginx/nginx.env
comments: true
---
diff --git a/_posts/2021-08-29-custom-cmds-in-ubuntu.md b/_posts/2021-08-29-custom-cmds-in-ubuntu.md
index bd45215..d4f4449 100644
--- a/_posts/2021-08-29-custom-cmds-in-ubuntu.md
+++ b/_posts/2021-08-29-custom-cmds-in-ubuntu.md
@@ -46,8 +46,8 @@ Now you should be able to send your command from the terminal, the file name is
Extra
SSH without asking for password.
-Create file named `sshnopwd` and paste the [contents of this file](https://git.sthope.dev/sthope/sthope_website_examples/raw/branch/master/custom-cmds-in-ubuntu/bin_examples/sshnopwd)
+Create file named `sshnopwd` and paste the [contents of this file](https://git.sthope.dev/sthope/sthope-examples/src/branch/master/custom-cmds-in-ubuntu/bin_examples/sshnopwd)
now instead of using `ssh username@ip` and then entering password, simply run `sshnopwd password username@ip` and it will automatically login.
-Small collection with more examples can be found [here](https://git.sthope.dev/sthope/sthope_website_examples/src/branch/master/custom-cmds-in-ubuntu/bin_examples)
\ No newline at end of file
+Small collection with more examples can be found [here](https://git.sthope.dev/sthope/sthope-examples/src/branch/master/custom-cmds-in-ubuntu/bin_examples)
\ No newline at end of file
diff --git a/_posts/2021-08-30-portainer-stacks.md b/_posts/2021-08-30-portainer-stacks.md
index e772c3b..412d707 100644
--- a/_posts/2021-08-30-portainer-stacks.md
+++ b/_posts/2021-08-30-portainer-stacks.md
@@ -20,7 +20,7 @@ pic12: "/assets/images/portainer_stacks/12.jpg"
pic13: "/assets/images/portainer_stacks/13.jpg"
pic14: "/assets/images/portainer_stacks/14.jpg"
pic15: "/assets/images/portainer_stacks/15.jpg"
-stack_example: "https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master/libreoffice.yml"
+stack_example: "https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/src/branch/master/libreoffice.yml"
comments: true
---
### Installling Portainer
diff --git a/_posts/2021-08-31-samba-docker-container.md b/_posts/2021-08-31-samba-docker-container.md
index 265bd78..fb5698d 100644
--- a/_posts/2021-08-31-samba-docker-container.md
+++ b/_posts/2021-08-31-samba-docker-container.md
@@ -6,11 +6,11 @@ author: sthope
image: samba-logo.png
comments: true
categories: [ Docker, Samba, Portainer, Stacks ]
-samba_repo: "https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master/samba"
-env_file: "https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master/samba/config.env"
-dockercompose: "https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master/samba/samba.yml"
+samba_repo: "https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/src/branch/master/samba"
+env_file: "https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/src/branch/master/samba/config.env"
+dockercompose: "https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/src/branch/master/samba/samba.yml"
samba_portainer_example: "/assets/images/samba_example.png"
-repository_url: "https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master"
+repository_url: "https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/src/branch/master"
compose_path: "samba/samba.yml"
---
diff --git a/_posts/2021-09-01-how-to-create-a-newuser-in-debian.md b/_posts/2021-09-01-how-to-create-a-newuser-in-debian.md
index fd37ff8..f99e9a0 100644
--- a/_posts/2021-09-01-how-to-create-a-newuser-in-debian.md
+++ b/_posts/2021-09-01-how-to-create-a-newuser-in-debian.md
@@ -53,7 +53,7 @@ Save and reboot, system should now automatically login into the new user instead
1-Line command, replace Username and Password with your details and run:
```
-bash -c "$(wget -qLO - https://git.sthope.dev/sthope/sthope_website_examples/raw/branch/master/custom-cmds-in-ubuntu/bin_examples/proxmox_addnewuser)" Username Password
+bash -c "$(wget -qLO - https://git.sthope.dev/sthope/sthope-examples/src/branch/master/custom-cmds-in-ubuntu/bin_examples/proxmox_addnewuser)" Username Password
```
It will Update & Upgrade system, install sudo, create Username with Password provided and give new created User `sudo` and `docker` permissions.
\ No newline at end of file
diff --git a/_posts/2021-09-02-portainer-agent.md b/_posts/2021-09-02-portainer-agent.md
new file mode 100644
index 0000000..0750651
--- /dev/null
+++ b/_posts/2021-09-02-portainer-agent.md
@@ -0,0 +1,39 @@
+---
+layout: post
+title: "Portainer Agent"
+description: "Connection multiple Docker Hosts in one Portainer instance"
+author: sthope
+image:
+categories: [ Docker, Portainer, Portainer Agent ]
+comments: true
+pic01: "/assets/images/portainer-agent/1.jpg"
+pic02: "/assets/images/portainer-agent/2.jpg"
+pic03: "/assets/images/portainer-agent/3.jpg"
+pic04: "/assets/images/portainer-agent/4.jpg"
+---
+# Portainer Edge Agent
+
+
+Open `Endpoints` tab on Portainer:
+```
+http://Portainer_IP:9000/#!/endpoints
+```
+
+
+
+1. Select `Edge Agent`.
+2. Give it a `Name` (generally hostname of the instance you are adding).
+3. `Portainer server URL` is the url of your Portainer: http://Portainer_IP:9000
+
+
+
+Copy `EDGE_ID` and `EDGE_KEY`
+
+
+
+On the terminal of host you are going to add to Portainer send:
+```
+bash -c "$(wget -qLO - https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/raw/branch/master/portainer/install-portainer-agent)" EDGE_ID EDGE_KEY
+```
+Replace `EDGE_ID` and `EDGE_KEY` with ones given by Portainer
+
diff --git a/_posts/2021-09-03-ssh-keys.md b/_posts/2021-09-03-ssh-keys.md
index acfd7de..e11b56f 100644
--- a/_posts/2021-09-03-ssh-keys.md
+++ b/_posts/2021-09-03-ssh-keys.md
@@ -7,8 +7,6 @@ image:
categories: [ ssh, ssh keys ]
comments: true
---
-
-
Generate a long random password with:
```
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 64 | head -n 1
diff --git a/assets/images/portainer-agent/1.jpg b/assets/images/portainer-agent/1.jpg
new file mode 100644
index 0000000..e2844d4
Binary files /dev/null and b/assets/images/portainer-agent/1.jpg differ
diff --git a/assets/images/portainer-agent/2.jpg b/assets/images/portainer-agent/2.jpg
new file mode 100644
index 0000000..9b4ba20
Binary files /dev/null and b/assets/images/portainer-agent/2.jpg differ
diff --git a/assets/images/portainer-agent/3.jpg b/assets/images/portainer-agent/3.jpg
new file mode 100644
index 0000000..d1b16bb
Binary files /dev/null and b/assets/images/portainer-agent/3.jpg differ
diff --git a/assets/images/portainer-agent/4.jpg b/assets/images/portainer-agent/4.jpg
new file mode 100644
index 0000000..5d45ee4
Binary files /dev/null and b/assets/images/portainer-agent/4.jpg differ
diff --git a/by-categories.html b/by-categories.html
index fff7010..65ab811 100644
--- a/by-categories.html
+++ b/by-categories.html
@@ -16,7 +16,7 @@ make-smaller-titles: true
diff --git a/by-year.html b/by-year.html
index c65ca53..3a63d48 100644
--- a/by-year.html
+++ b/by-year.html
@@ -16,7 +16,7 @@ make-smaller-titles: true
diff --git a/index.html b/index.html
index a8b465d..88766a1 100644
--- a/index.html
+++ b/index.html
@@ -43,7 +43,7 @@ make-smaller-titles: true
{% endfor %}
-
- more...
+ more...