vault backup: 2023-10-29 01:46:30

This commit is contained in:
doku
2023-10-29 01:46:30 -07:00
parent d3d32b60b7
commit 9251c0a14c
3 changed files with 99 additions and 47 deletions

View File

@@ -25,5 +25,6 @@
"workspaces": false,
"file-recovery": true,
"publish": false,
"sync": false
"sync": false,
"properties": false
}

View File

@@ -4,55 +4,22 @@
"type": "split",
"children": [
{
"id": "81e412e05113366c",
"id": "59d793fa6a49a9b5",
"type": "tabs",
"children": [
{
"id": "03f88f218a42dcc6",
"type": "leaf",
"state": {
"type": "empty",
"state": {}
}
},
{
"id": "657edfc05cc08cd7",
"id": "4abba66076193e69",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "README.md",
"mode": "source",
"source": false
}
}
},
{
"id": "a072d1b7e91691d6",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Tenmado/Git.md",
"mode": "source",
"source": false
}
}
},
{
"id": "0a85e7f4077badd4",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Tenmado/Linux - Commands & CLI.md",
"file": "Tenmado/Docker Compose.md",
"mode": "source",
"source": false
}
}
}
],
"currentTab": 3
]
}
],
"direction": "vertical"
@@ -102,7 +69,7 @@
}
],
"direction": "horizontal",
"width": 300
"width": 200
},
"right": {
"id": "c687fbf175e9c900",
@@ -118,7 +85,7 @@
"state": {
"type": "backlink",
"state": {
"file": "Tenmado/Linux - Commands & CLI.md",
"file": "Tenmado/Docker Compose.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@@ -135,7 +102,7 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "Tenmado/Linux - Commands & CLI.md",
"file": "Tenmado/Docker Compose.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
@@ -158,7 +125,7 @@
"state": {
"type": "outline",
"state": {
"file": "Tenmado/Linux - Commands & CLI.md"
"file": "Tenmado/Docker Compose.md"
}
}
},
@@ -175,7 +142,7 @@
}
],
"direction": "horizontal",
"width": 300
"width": 200
},
"left-ribbon": {
"hiddenItems": {
@@ -187,14 +154,14 @@
"command-palette:Open command palette": false
}
},
"active": "0a85e7f4077badd4",
"active": "4abba66076193e69",
"lastOpenFiles": [
"Tenmado/Dotfiles.md",
"Tenmado/Linux - Games Live Streaming.md",
"Tenmado/Git.md",
"Tenmado/Linux - Commands & CLI.md",
"Tenmado/Linux - Neovim.md",
"Tenmado/Linux - Games Live Streaming.md",
"Tenmado/Linux - Desktop Entries.md",
"Tenmado/Dotfiles.md",
"Tenmado/Linux - Neovim.md",
"Tenmado/Docker Compose.md",
"Git",
"Tenmado/Linux - Desktop Entries 1.md",

View File

@@ -151,4 +151,88 @@ services:
- /volume1/plex:/data
devices:
- /dev/dri:/dev/dri
```
#Public/Notta
## Homepage
```bash
version: "3.3"
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
environment:
PUID: 1026
PGID: 100
ports:
- 3300:3000
volumes:
- /volume1/docker/homepage/config:/app/config # Make sure your local config directory exists
- /var/run/docker.sock:/var/run/docker.sock:ro # optional, for docker integrations
restart: unless-stopped
```
## Homepage Config
```bash
# For configuration options and examples, please see:
# https://gethomepage.dev/latest/configs/services
- Network:
    - Pi-hole-Barra:
        icon: pi-hole.png
        href: http://192.168.1.20/admin
        description: Raspberry Pi4 Adblocker
        winget:
            type: pihole
            url: http://192.168.1.20/admin
            fields: ["queries", "blocked", "blocked_percent", "gravity"]
    - Pi-hole-Noches:
        icon: pi-hole.png
        href: http://192.168.1.18/admin
        description: Raspberry Pi3b+ Adblocker
    - TPLink:
        icon: tp-link.png
        href: http://192.168.1.1
        description: Local Main Router
- Media:
    - Plex:
        icon: plex.png
        href: http://192.168.1.3:32400
        description: Local Plex instance
        winget:
- Selfhosting:
    - Portainer:
        icon: portainer.png
        href: https://192.168.1.3:9443
        description: Syno01 Portainer Bussiness Instance
        widget:
            type: portainer
            url: https://192.168.1.3:9443
            env: 2
            key: ptr_R99lfgmSpt03YPxXM6scZb9m6CfX6MGnqAob+QYSOl4=
    - Syno-01:
        icon: synology-file-station.png
        href: http://192.168.1.3:5000
        description: Syno01 40TB
    - Syno-02:
        icon: synology-file-station.png
        href: http://192.168.1.5:5000
        description: Syno01 40TB
- Backup:
    - Duplicati:
        icon: duplicati.png
        href: http://192.168.1.3:8200
        description: Backup Files
    - Syncthing:
        icon: syncthing.png
        href: http://192.168.1.3:8384
        description: Backup Files    
- Servers:
    - Ben:
        icon: proxmox.png
        href: https://192.168.1.2:8006
        description: Ben Server
    - Jam:
        icon: truenas-scale.png
        href: https://192.168.1.2:8006
        description: Jam Storage/Server
```