This commit is contained in:
parent
055f2169dc
commit
0506f02b43
2
404.html
2
404.html
@ -16,7 +16,7 @@ permalink: /404.html
|
|||||||
|
|
||||||
<div class="error-text">
|
<div class="error-text">
|
||||||
<a href="{{ site.baseurl }}/">Home</a> |
|
<a href="{{ site.baseurl }}/">Home</a> |
|
||||||
<a href="{{ site.baseurl }}/by-year/">All Posts</a> |
|
<a href="{{ site.baseurl }}/by-year">All Posts</a> |
|
||||||
<a href="{{ site.baseurl }}/search/">Search</a>
|
<a href="{{ site.baseurl }}/search/">Search</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
- name: tuya_doorlock
|
tuya_doorlock:
|
||||||
- name: randompwd
|
randompwd:
|
||||||
- name: randomport
|
randomport:
|
||||||
- name: mqtt-broker
|
mqtt-broker:
|
||||||
- name: dckrtmplt
|
dckrtmplt:
|
@ -4,8 +4,8 @@
|
|||||||
|
|
||||||
<ul class="pages">
|
<ul class="pages">
|
||||||
<li><a href="{{ site.baseurl }}/"><i class="fa fa-home"></i> Home</a></li>
|
<li><a href="{{ site.baseurl }}/"><i class="fa fa-home"></i> Home</a></li>
|
||||||
<li><a href="{{ site.baseurl }}/by-year/"><i class="fa fa-archive"></i> All Posts</a></li>
|
<li><a href="{{ site.baseurl }}/by-year"><i class="fa fa-archive"></i> All Posts</a></li>
|
||||||
<li><a href="https://git.sthope.dev/sthope/docker_portainer_stacks" target="_blank"><i class="fas fa-cubes"></i> Portainer Stacks</a></li>
|
<li><a href="https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks" target="_blank"><i class="fas fa-cubes"></i> Portainer Stacks</a></li>
|
||||||
<li><a href="https://git.sthope.dev/sthope?tab=&sort=recentupdate&q=proxmox" target="_blank"><i class="fab fa-product-hunt"></i> Proxmox LXC's</a></li>
|
<li><a href="https://git.sthope.dev/sthope?tab=&sort=recentupdate&q=proxmox" target="_blank"><i class="fab fa-product-hunt"></i> Proxmox LXC's</a></li>
|
||||||
<li><a href="{{ site.baseurl }}/dockercontainers"><i class="fab fa-docker"></i> My Docker Containers</a></li>
|
<li><a href="{{ site.baseurl }}/dockercontainers"><i class="fab fa-docker"></i> My Docker Containers</a></li>
|
||||||
<li><a href="{{ site.baseurl }}/search/"><i class="fa fa-search"></i> Search</a></li>
|
<li><a href="{{ site.baseurl }}/search/"><i class="fa fa-search"></i> Search</a></li>
|
||||||
|
@ -45,7 +45,7 @@ layout: default
|
|||||||
<ul style="list-style-type:upper-roman">
|
<ul style="list-style-type:upper-roman">
|
||||||
{% for item in site.data.mydockercontainers %}
|
{% for item in site.data.mydockercontainers %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/users/Sthopeless/packages/container/package/{{ item.name }}" target="_blank"> {{ item.name }}</a>
|
<a href="https://github.com/users/Sthopeless/packages/container/package/{{ item }}" target="_blank"> {{ item }}</a>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -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.
|
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
|
63
_posts/2021-07-25-jekyll-website.md
Normal file
63
_posts/2021-07-25-jekyll-website.md
Normal file
@ -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.
|
@ -7,7 +7,7 @@ image: "dockergithub.png"
|
|||||||
categories: [ Docker, Github ]
|
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_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'
|
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
|
comments: true
|
||||||
---
|
---
|
||||||
|
|
||||||
@ -29,7 +29,7 @@ echo $CR_PAT | docker login ghcr.io -u USERNAME --password-stdin
|
|||||||
|
|
||||||
## Setup container files
|
## 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:
|
2. Open terminal, go to the repo location (eg: ~/Documents/dckrtmplt) and do:
|
||||||
```
|
```
|
||||||
docker build -t dckrtmplt . ; \
|
docker build -t dckrtmplt . ; \
|
||||||
|
@ -12,7 +12,7 @@ doublecmd_dark: "https://doublecmd.sourceforge.io/gallery/images/MainWindowDark.
|
|||||||
---
|
---
|
||||||

|

|
||||||
|
|
||||||
<h2><a href="https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master/doublecommander.yml" target="_blank">Portainer Stack</a></h2>
|
<h2><a href="https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks/src/branch/master/doublecommander.yml" target="_blank">Portainer Stack</a></h2>
|
||||||
```
|
```
|
||||||
---
|
---
|
||||||
version: "3.8"
|
version: "3.8"
|
||||||
|
@ -7,7 +7,7 @@ image: "firefox.png"
|
|||||||
categories: [ Docker, Portainer, Stack, LinuxServer ]
|
categories: [ Docker, Portainer, Stack, LinuxServer ]
|
||||||
comments: true
|
comments: true
|
||||||
logo: "/assets/images/doublecommander.png"
|
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"
|
||||||
---
|
---
|
||||||
|
|
||||||
<h2><a href="{{page.stack}}" target="_blank">Portainer Stack</a></h2>
|
<h2><a href="{{page.stack}}" target="_blank">Portainer Stack</a></h2>
|
||||||
@ -42,7 +42,7 @@ volumes:
|
|||||||
<br>
|
<br>
|
||||||
Use `Repository URL`:
|
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
|
||||||
```
|
```
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
|
@ -6,8 +6,8 @@ author: sthope
|
|||||||
image:
|
image:
|
||||||
categories: [ Docker, Portainer, Stack, LinuxServer, HTPC ]
|
categories: [ Docker, Portainer, Stack, LinuxServer, HTPC ]
|
||||||
comments: true
|
comments: true
|
||||||
env_file: https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master/htpc/config.env
|
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/docker_portainer_stacks/src/branch/master/htpc/docker-compose.yml
|
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
|
htpc_example: /assets/images/htpc_example.png
|
||||||
---
|
---
|
||||||
***Containers:***
|
***Containers:***
|
||||||
@ -32,7 +32,7 @@ Download or copy the contents from [this file]({{page.env_file}}) and edit with
|
|||||||

|

|
||||||
|
|
||||||
**Repository URL:** <br>
|
**Repository URL:** <br>
|
||||||
```https://git.sthope.dev/sthope/docker_portainer_stacks``` <br>
|
```https://git.sthope.dev/sthope/sthope-examples/src/branch/master/docker_portainer_stacks``` <br>
|
||||||
**Compose path:** <br>
|
**Compose path:** <br>
|
||||||
```htpc/docker-compose.yml``` <br>
|
```htpc/docker-compose.yml``` <br>
|
||||||
<br>
|
<br>
|
||||||
|
@ -5,7 +5,7 @@ description: "Docker NGINX & Authelia"
|
|||||||
author: sthope
|
author: sthope
|
||||||
image: "nginx-logo.png"
|
image: "nginx-logo.png"
|
||||||
categories: [ Docker, NGINX, LinuxServer ]
|
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
|
comments: true
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -46,8 +46,8 @@ Now you should be able to send your command from the terminal, the file name is
|
|||||||
|
|
||||||
<h2 id="part5">Extra</h2>
|
<h2 id="part5">Extra</h2>
|
||||||
SSH without asking for password.<br>
|
SSH without asking for password.<br>
|
||||||
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)<br>
|
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)<br>
|
||||||
|
|
||||||
now instead of using `ssh username@ip` and then entering password, simply run `sshnopwd password username@ip` and it will automatically login.<br>
|
now instead of using `ssh username@ip` and then entering password, simply run `sshnopwd password username@ip` and it will automatically login.<br>
|
||||||
|
|
||||||
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)
|
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)
|
@ -20,7 +20,7 @@ pic12: "/assets/images/portainer_stacks/12.jpg"
|
|||||||
pic13: "/assets/images/portainer_stacks/13.jpg"
|
pic13: "/assets/images/portainer_stacks/13.jpg"
|
||||||
pic14: "/assets/images/portainer_stacks/14.jpg"
|
pic14: "/assets/images/portainer_stacks/14.jpg"
|
||||||
pic15: "/assets/images/portainer_stacks/15.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
|
comments: true
|
||||||
---
|
---
|
||||||
### Installling Portainer
|
### Installling Portainer
|
||||||
|
@ -6,11 +6,11 @@ author: sthope
|
|||||||
image: samba-logo.png
|
image: samba-logo.png
|
||||||
comments: true
|
comments: true
|
||||||
categories: [ Docker, Samba, Portainer, Stacks ]
|
categories: [ Docker, Samba, Portainer, Stacks ]
|
||||||
samba_repo: "https://git.sthope.dev/sthope/docker_portainer_stacks/src/branch/master/samba"
|
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/docker_portainer_stacks/src/branch/master/samba/config.env"
|
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/docker_portainer_stacks/src/branch/master/samba/samba.yml"
|
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"
|
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"
|
compose_path: "samba/samba.yml"
|
||||||
|
|
||||||
---
|
---
|
||||||
|
@ -53,7 +53,7 @@ Save and reboot, system should now automatically login into the new user instead
|
|||||||
<br>
|
<br>
|
||||||
1-Line command, replace Username and Password with your details and run:
|
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.
|
It will Update & Upgrade system, install sudo, create Username with Password provided and give new created User `sudo` and `docker` permissions.
|
39
_posts/2021-09-02-portainer-agent.md
Normal file
39
_posts/2021-09-02-portainer-agent.md
Normal file
@ -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
|
||||||
|
|
||||||
|
<br>
|
||||||
|
Open `Endpoints` tab on Portainer:
|
||||||
|
```
|
||||||
|
http://Portainer_IP:9000/#!/endpoints
|
||||||
|
```
|
||||||
|
|
||||||
|

|
||||||
|
<br>
|
||||||
|
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
|
||||||
|

|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
Copy `EDGE_ID` and `EDGE_KEY`
|
||||||
|

|
||||||
|

|
||||||
|
<br>
|
||||||
|
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
|
||||||
|
|
@ -7,8 +7,6 @@ image:
|
|||||||
categories: [ ssh, ssh keys ]
|
categories: [ ssh, ssh keys ]
|
||||||
comments: true
|
comments: true
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
Generate a long random password with:
|
Generate a long random password with:
|
||||||
```
|
```
|
||||||
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 64 | head -n 1
|
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 64 | head -n 1
|
||||||
|
BIN
assets/images/portainer-agent/1.jpg
Normal file
BIN
assets/images/portainer-agent/1.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 153 KiB |
BIN
assets/images/portainer-agent/2.jpg
Normal file
BIN
assets/images/portainer-agent/2.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 234 KiB |
BIN
assets/images/portainer-agent/3.jpg
Normal file
BIN
assets/images/portainer-agent/3.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 173 KiB |
BIN
assets/images/portainer-agent/4.jpg
Normal file
BIN
assets/images/portainer-agent/4.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 180 KiB |
@ -16,7 +16,7 @@ make-smaller-titles: true
|
|||||||
<span class="caret"></span>
|
<span class="caret"></span>
|
||||||
</button>
|
</button>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li><a href="{{ site.baseurl }}/by-year/">Years</a></li>
|
<li><a href="{{ site.baseurl }}/by-year">Years</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ make-smaller-titles: true
|
|||||||
<span class="caret"></span>
|
<span class="caret"></span>
|
||||||
</button>
|
</button>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li><a href="{{ site.baseurl }}/by-categories/">Categories</a></li>
|
<li><a href="{{ site.baseurl }}/by-categories">Categories</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ make-smaller-titles: true
|
|||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<li>
|
<li>
|
||||||
<small><i><a href="{{ site.baseurl }}/by-year/">more...</a></i></small>
|
<small><i><a href="{{ site.baseurl }}/by-year">more...</a></i></small>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user