diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 6b877e6..0000000 --- a/.drone.yml +++ /dev/null @@ -1,22 +0,0 @@ ---- -kind: pipeline -type: docker -name: build - -steps: -- name: build - image: squidfunk/mkdocs-material:7.1.9 - volumes: - - name: site - path: /site - commands: - - /usr/local/bin/python -m pip install --upgrade pip - - pip install -U -r ./requirements.txt - - mkdocs build - - cp -r site/ /site - - chmod -R 777 /site - -volumes: -- name: site - host: - path: /home/sthope/docker/wiki \ No newline at end of file diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml deleted file mode 100644 index 8328cde..0000000 --- a/.gitea/workflows/build.yaml +++ /dev/null @@ -1,37 +0,0 @@ -name: Build -on: - - push - - pull_request - -# schedule: - # - cron: '0 21 * * 0' - -jobs: - build: - runs-on: catthehacker/ubuntu:act-latest - - steps: - - uses: actions/checkout@v3 - - - name: Set up Python 3.10 - uses: actions/setup-python@v3 - with: - python-version: "3.10.12" - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -U -r requirements.txt - - - name: Build and deploy - run: | - pip install mkdocs-material==7.1.9 - mkdocs build - cp -r site/ $GITHUB_WORKSPACE/site - chmod -R 777 $GITHUB_WORKSPACE/site - - - name: Upload built site - uses: actions/upload-artifact@v2 - with: - name: built-site - path: $GITHUB_WORKSPACE/site \ No newline at end of file diff --git a/.gitea/workflows/lint b/.gitea/workflows/lint deleted file mode 100644 index e5ced0a..0000000 --- a/.gitea/workflows/lint +++ /dev/null @@ -1,15 +0,0 @@ -name: lint -on: - - push - - pull_request - -jobs: - lint: - name: lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: install markdownlint-cli - run: npm install -g markdownlint-cli - - name: lint - run: markdownlint '**/*.md' \ No newline at end of file diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 36dc1aa..0000000 --- a/.gitignore +++ /dev/null @@ -1,85 +0,0 @@ -# ignore rendered site -site/ -./sthope/ -# Created by https://www.toptal.com/developers/gitignore/api/vscode,macos,windows,linux -# Edit at https://www.toptal.com/developers/gitignore?templates=vscode,macos,windows,linux - -### Linux ### -*~ - -# temporary files which can be created if a process still has a handle open of a deleted file -.fuse_hidden* - -# KDE directory preferences -.directory - -# Linux trash folder which might appear on any partition or disk -.Trash-* - -# .nfs files are created when an open file is removed but is still being accessed -.nfs* - -### macOS ### -# General -.DS_Store -.AppleDouble -.LSOverride - -# Icon must end with two \r -Icon - - -# Thumbnails -._* - -# Files that might appear in the root of a volume -.DocumentRevisions-V100 -.fseventsd -.Spotlight-V100 -.TemporaryItems -.Trashes -.VolumeIcon.icns -.com.apple.timemachine.donotpresent - -# Directories potentially created on remote AFP share -.AppleDB -.AppleDesktop -Network Trash Folder -Temporary Items -.apdisk - -### vscode ### -.vscode/* -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json -*.code-workspace - -### Windows ### -# Windows thumbnail cache files -Thumbs.db -Thumbs.db:encryptable -ehthumbs.db -ehthumbs_vista.db - -# Dump file -*.stackdump - -# Folder config file -[Dd]esktop.ini - -# Recycle Bin used on file shares -$RECYCLE.BIN/ - -# Windows Installer files -*.cab -*.msi -*.msix -*.msm -*.msp - -# Windows shortcuts -*.lnk - -# End of https://www.toptal.com/developers/gitignore/api/vscode,macos,windows,linux \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 82cf781..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "files.exclude": { - "**/.git": false - } -} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 2cf9e9c..0000000 --- a/Dockerfile +++ /dev/null @@ -1,4 +0,0 @@ -FROM squidfunk/mkdocs-material:${TAG-latest} - -COPY requirements.txt /docs/requirements.txt -RUN pip install -U -r /docs/requirements.txt \ No newline at end of file diff --git a/backup/new_wiki.tar.xz b/backup/new_wiki.tar.xz new file mode 100644 index 0000000..0b739db Binary files /dev/null and b/backup/new_wiki.tar.xz differ diff --git a/backup/old_wiki.tar.xz b/backup/old_wiki.tar.xz new file mode 100644 index 0000000..247ae52 Binary files /dev/null and b/backup/old_wiki.tar.xz differ diff --git a/docker-compose.yaml b/docker-compose.yaml deleted file mode 100644 index a7e6275..0000000 --- a/docker-compose.yaml +++ /dev/null @@ -1,10 +0,0 @@ -version: "3.9" - -services: - wiki: - build: . - image: sthope/wiki - volumes: - - .:/docs - ports: - - 8000:8000 diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..843950a --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +--- +services: + sthope-wiki: + image: squidfunk/mkdocs-material:latest + container_name: sthope-wiki + restart: unless-stopped + network_mode: sthope + volumes: + - /home/sthope/Documents/docker/mkdocs:/docs + ports: + - "8000:8000" \ No newline at end of file diff --git a/docs/portainer-stacks/Airsonic.md b/docs/docker-compose/Airsonic.md similarity index 100% rename from docs/portainer-stacks/Airsonic.md rename to docs/docker-compose/Airsonic.md diff --git a/docs/portainer-stacks/Authentik.md b/docs/docker-compose/Authentik.md similarity index 100% rename from docs/portainer-stacks/Authentik.md rename to docs/docker-compose/Authentik.md diff --git a/docs/portainer-stacks/Bitwarden.md b/docs/docker-compose/Bitwarden.md similarity index 100% rename from docs/portainer-stacks/Bitwarden.md rename to docs/docker-compose/Bitwarden.md diff --git a/docs/portainer-stacks/CrowdSec.md b/docs/docker-compose/CrowdSec.md similarity index 100% rename from docs/portainer-stacks/CrowdSec.md rename to docs/docker-compose/CrowdSec.md diff --git a/docs/portainer-stacks/Dillinger.md b/docs/docker-compose/Dillinger.md similarity index 100% rename from docs/portainer-stacks/Dillinger.md rename to docs/docker-compose/Dillinger.md diff --git a/docs/portainer-stacks/Drone.md b/docs/docker-compose/Drone.md similarity index 100% rename from docs/portainer-stacks/Drone.md rename to docs/docker-compose/Drone.md diff --git a/docs/portainer-stacks/Gitea.md b/docs/docker-compose/Gitea.md similarity index 100% rename from docs/portainer-stacks/Gitea.md rename to docs/docker-compose/Gitea.md diff --git a/docs/portainer-stacks/LibrePhotos.md b/docs/docker-compose/LibrePhotos.md similarity index 100% rename from docs/portainer-stacks/LibrePhotos.md rename to docs/docker-compose/LibrePhotos.md diff --git a/docs/portainer-stacks/Librespeed.md b/docs/docker-compose/Librespeed.md similarity index 100% rename from docs/portainer-stacks/Librespeed.md rename to docs/docker-compose/Librespeed.md diff --git a/docs/portainer-stacks/MQTT-Mosquitto.md b/docs/docker-compose/MQTT-Mosquitto.md similarity index 100% rename from docs/portainer-stacks/MQTT-Mosquitto.md rename to docs/docker-compose/MQTT-Mosquitto.md diff --git a/docs/portainer-stacks/Nextcloud.md b/docs/docker-compose/Nextcloud.md similarity index 100% rename from docs/portainer-stacks/Nextcloud.md rename to docs/docker-compose/Nextcloud.md diff --git a/docs/portainer-stacks/Ombi.md b/docs/docker-compose/Ombi.md similarity index 100% rename from docs/portainer-stacks/Ombi.md rename to docs/docker-compose/Ombi.md diff --git a/docs/portainer-stacks/Overseerr.md b/docs/docker-compose/Overseerr.md similarity index 100% rename from docs/portainer-stacks/Overseerr.md rename to docs/docker-compose/Overseerr.md diff --git a/docs/portainer-stacks/PhotoView.md b/docs/docker-compose/PhotoView.md similarity index 100% rename from docs/portainer-stacks/PhotoView.md rename to docs/docker-compose/PhotoView.md diff --git a/docs/portainer-stacks/Prowlarr.md b/docs/docker-compose/Prowlarr.md similarity index 100% rename from docs/portainer-stacks/Prowlarr.md rename to docs/docker-compose/Prowlarr.md diff --git a/docs/portainer-stacks/Swag.md b/docs/docker-compose/Swag.md similarity index 100% rename from docs/portainer-stacks/Swag.md rename to docs/docker-compose/Swag.md diff --git a/docs/portainer-stacks/TasmoBackup.md b/docs/docker-compose/TasmoBackup.md similarity index 100% rename from docs/portainer-stacks/TasmoBackup.md rename to docs/docker-compose/TasmoBackup.md diff --git a/docs/portainer-stacks/Tasmota-Device-Manager.md b/docs/docker-compose/Tasmota-Device-Manager.md similarity index 100% rename from docs/portainer-stacks/Tasmota-Device-Manager.md rename to docs/docker-compose/Tasmota-Device-Manager.md diff --git a/docs/portainer-stacks/Transmission.md b/docs/docker-compose/Transmission.md similarity index 100% rename from docs/portainer-stacks/Transmission.md rename to docs/docker-compose/Transmission.md diff --git a/docs/portainer-stacks/VSCode.md b/docs/docker-compose/VSCode.md similarity index 100% rename from docs/portainer-stacks/VSCode.md rename to docs/docker-compose/VSCode.md diff --git a/docs/portainer-stacks/Whisparr.md b/docs/docker-compose/Whisparr.md similarity index 100% rename from docs/portainer-stacks/Whisparr.md rename to docs/docker-compose/Whisparr.md diff --git a/docs/portainer-stacks/WireGuard.md b/docs/docker-compose/WireGuard.md similarity index 100% rename from docs/portainer-stacks/WireGuard.md rename to docs/docker-compose/WireGuard.md diff --git a/docs/portainer-stacks/Zigbee2MQTT.md b/docs/docker-compose/Zigbee2MQTT.md similarity index 100% rename from docs/portainer-stacks/Zigbee2MQTT.md rename to docs/docker-compose/Zigbee2MQTT.md diff --git a/docs/portainer-stacks/authelia.md b/docs/docker-compose/authelia.md similarity index 100% rename from docs/portainer-stacks/authelia.md rename to docs/docker-compose/authelia.md diff --git a/docs/portainer-stacks/bazarr.md b/docs/docker-compose/bazarr.md similarity index 100% rename from docs/portainer-stacks/bazarr.md rename to docs/docker-compose/bazarr.md diff --git a/docs/portainer-stacks/cryptpad.md b/docs/docker-compose/cryptpad.md similarity index 100% rename from docs/portainer-stacks/cryptpad.md rename to docs/docker-compose/cryptpad.md diff --git a/docs/portainer-stacks/dashy.md b/docs/docker-compose/dashy.md similarity index 100% rename from docs/portainer-stacks/dashy.md rename to docs/docker-compose/dashy.md diff --git a/docs/portainer-stacks/digiKam.md b/docs/docker-compose/digiKam.md similarity index 100% rename from docs/portainer-stacks/digiKam.md rename to docs/docker-compose/digiKam.md diff --git a/docs/portainer-stacks/ethercalc.md b/docs/docker-compose/ethercalc.md similarity index 100% rename from docs/portainer-stacks/ethercalc.md rename to docs/docker-compose/ethercalc.md diff --git a/docs/portainer-stacks/guacamole.md b/docs/docker-compose/guacamole.md similarity index 100% rename from docs/portainer-stacks/guacamole.md rename to docs/docker-compose/guacamole.md diff --git a/docs/portainer-stacks/heimdall.md b/docs/docker-compose/heimdall.md similarity index 100% rename from docs/portainer-stacks/heimdall.md rename to docs/docker-compose/heimdall.md diff --git a/docs/portainer-stacks/invidious.md b/docs/docker-compose/invidious.md similarity index 100% rename from docs/portainer-stacks/invidious.md rename to docs/docker-compose/invidious.md diff --git a/docs/portainer-stacks/jdownloader.md b/docs/docker-compose/jdownloader.md similarity index 100% rename from docs/portainer-stacks/jdownloader.md rename to docs/docker-compose/jdownloader.md diff --git a/docs/portainer-stacks/jellyfin.md b/docs/docker-compose/jellyfin.md similarity index 100% rename from docs/portainer-stacks/jellyfin.md rename to docs/docker-compose/jellyfin.md diff --git a/docs/portainer-stacks/mealie.md b/docs/docker-compose/mealie.md similarity index 100% rename from docs/portainer-stacks/mealie.md rename to docs/docker-compose/mealie.md diff --git a/docs/portainer-stacks/mqtt-explorer.md b/docs/docker-compose/mqtt-explorer.md similarity index 100% rename from docs/portainer-stacks/mqtt-explorer.md rename to docs/docker-compose/mqtt-explorer.md diff --git a/docs/portainer-stacks/n8n.md b/docs/docker-compose/n8n.md similarity index 100% rename from docs/portainer-stacks/n8n.md rename to docs/docker-compose/n8n.md diff --git a/docs/portainer-stacks/octoprint.md b/docs/docker-compose/octoprint.md similarity index 100% rename from docs/portainer-stacks/octoprint.md rename to docs/docker-compose/octoprint.md diff --git a/docs/portainer-stacks/onlyoffice.md b/docs/docker-compose/onlyoffice.md similarity index 100% rename from docs/portainer-stacks/onlyoffice.md rename to docs/docker-compose/onlyoffice.md diff --git a/docs/portainer-stacks/phoneinfoga.md b/docs/docker-compose/phoneinfoga.md similarity index 100% rename from docs/portainer-stacks/phoneinfoga.md rename to docs/docker-compose/phoneinfoga.md diff --git a/docs/portainer-stacks/piped.md b/docs/docker-compose/piped.md similarity index 100% rename from docs/portainer-stacks/piped.md rename to docs/docker-compose/piped.md diff --git a/docs/portainer-stacks/qbittorrent.md b/docs/docker-compose/qbittorrent.md similarity index 100% rename from docs/portainer-stacks/qbittorrent.md rename to docs/docker-compose/qbittorrent.md diff --git a/docs/portainer-stacks/rustdesk.md b/docs/docker-compose/rustdesk.md similarity index 100% rename from docs/portainer-stacks/rustdesk.md rename to docs/docker-compose/rustdesk.md diff --git a/docs/portainer-stacks/samba.md b/docs/docker-compose/samba.md similarity index 100% rename from docs/portainer-stacks/samba.md rename to docs/docker-compose/samba.md diff --git a/docs/portainer-stacks/shlink.md b/docs/docker-compose/shlink.md similarity index 100% rename from docs/portainer-stacks/shlink.md rename to docs/docker-compose/shlink.md diff --git a/docs/portainer-stacks/tailscale.md b/docs/docker-compose/tailscale.md similarity index 100% rename from docs/portainer-stacks/tailscale.md rename to docs/docker-compose/tailscale.md diff --git a/docs/portainer-stacks/template.md b/docs/docker-compose/template.md similarity index 100% rename from docs/portainer-stacks/template.md rename to docs/docker-compose/template.md diff --git a/docs/portainer-stacks/tvheadend.md b/docs/docker-compose/tvheadend.md similarity index 100% rename from docs/portainer-stacks/tvheadend.md rename to docs/docker-compose/tvheadend.md diff --git a/docs/portainer-stacks/uptime-kuma.md b/docs/docker-compose/uptime-kuma.md similarity index 100% rename from docs/portainer-stacks/uptime-kuma.md rename to docs/docker-compose/uptime-kuma.md diff --git a/docs/portainer-stacks/Swag/Swag-MODS.md b/docs/portainer-stacks/Swag/Swag-MODS.md deleted file mode 100644 index a827172..0000000 --- a/docs/portainer-stacks/Swag/Swag-MODS.md +++ /dev/null @@ -1,11 +0,0 @@ -In your Swag environments add: -```yml - - DOCKER_MODS= -``` - -``` - linuxserver/mods:swag-dbip - linuxserver/mods:swag-auto-reload - linuxserver/mods:swag-cloudflare-real-ip - linuxserver/mods:swag-dashboard -``` \ No newline at end of file diff --git a/docs/portainer-stacks/Swag/adding-theme-park.md b/docs/portainer-stacks/Swag/adding-theme-park.md deleted file mode 100644 index 63798f6..0000000 --- a/docs/portainer-stacks/Swag/adding-theme-park.md +++ /dev/null @@ -1,57 +0,0 @@ -# [Theme-Park](https://docs.theme-park.dev/) - -Inside `/config/nginx` folder create file named `theme-park.conf` with: - -``` - proxy_set_header Accept-Encoding ""; - sub_filter - '' - ' - '; - sub_filter_once on; -``` - - -Now on the subdomain or subfolder file inside location add: - -```yaml - # Theme-Park - set $app guacamole; - set $theme organizr; - include /config/nginx/theme-park.conf; -``` - - -For example: - -``` -server { - listen 443 ssl; - listen [::]:443 ssl; - - server_name portal.*; - - include /config/nginx/ssl.conf; - client_max_body_size 0; - - location / { - proxy_pass http://guacamole:8080/guacamole/; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection $http_connection; - access_log off; - include /config/nginx/proxy.conf; - include /config/nginx/resolver.conf; - - # Theme-Park - set $app guacamole; - set $theme organizr; - include /config/nginx/theme-park.conf; - - proxy_buffering off; - } -} -``` - -`set $app` is the app name found here [in Theme-Park website](https://theme-park.dev/#about)
-`set $theme` is the theme name found can be [found here](https://docs.theme-park.dev/theme-options/) \ No newline at end of file diff --git a/mkdocs copy.yml b/mkdocs copy.yml deleted file mode 100644 index 7fa533b..0000000 --- a/mkdocs copy.yml +++ /dev/null @@ -1,143 +0,0 @@ -site_name: Sthope Wiki -repo_url: https://git.sthope.dev/sthope/wiki -repo_name: sthope/wiki -edit_uri: _edit/master/docs/ -site_url: https://wiki.sthope.dev -site_author: sthope - - -theme: - name: material - language: en - logo: images/sthope_wiki.png - favicon: images/assets/favicon.png - icon: - repo: fontawesome/brands/github - logo: fontawesome/regular/folder-open - palette: - - scheme: slate - toggle: - icon: material/weather-sunny - name: Switch to light mode - - scheme: default - toggle: - icon: material/weather-night - name: Switch to dark mode - - font: - code: Jet Brains Mono - features: - - navigation.instant - #- navigation.sections # prevents collapsible sections - #- navigation.expand #expands sections by default - # insiders only - - search.suggest - -plugins: - - git-revision-date - - search - - minify: - minify_html: true - - external-markdown - -markdown_extensions: - - abbr - - admonition # enables coloured blocks mid article - - attr_list # improves image handling - - pymdownx.details # enables collapsible admonitions - - footnotes - - meta # adds support for front matter - - toc: - permalink: true - toc_depth: 4 - - pymdownx.highlight: # code highlighting - linenums: true - # anchor_linenums: true - - pymdownx.tabbed # enables tabs for embedded blocks - # - pymdownx.inlinehilite - - pymdownx.snippets - - pymdownx.superfences # allows for the nesting of code blocks inside other blocks - - pymdownx.keys - -copyright: Sthope © 2022 -extra: - social: - - icon: 'fontawesome/brands/github' - link: 'https://github.com/sthopeless' - name: GitHub - - icon: 'fontawesome/brands/git' - link: 'https://git.sthope.dev/sthope' - name: Gitea - - icon: 'fontawesome/brands/discord' - link: 'https://discordapp.com/users/365825462074605569/' - name: Message me on Discord - -nav: - # - Tutorials: - # - MKDocs with Gitea and Drone: tutorials/mkdocs-with-gitea-and-drone.md - - Proxmox: - # - Debian VM: proxmox/Debian-VM.md - - Home Assistant on Proxmox: proxmox/how-to-install-home-assistant.md - - LXC Debian: proxmox/LXC-Debian.md - - LXC Passthrough: proxmox/Passthrough.md - - Proxmox send CPU Temp to Home-Assistant/MQTT: proxmox/send-cpu-temp-to-ha.md - - Ubuntu VM Resize Disk: proxmox/ubuntu-vm-resize-disk.md - # - VM Passthrough Harddrives: proxmox/vm-passthrough-harddrives.md - - Portainer Stacks: - - Airsonic: portainer-stacks/Airsonic.md - - authelia: portainer-stacks/authelia.md - - Authentik: portainer-stacks/Authentik.md - - bazarr: portainer-stacks/bazarr.md - - Bitwarden: portainer-stacks/Bitwarden.md - - CrowdSec: portainer-stacks/CrowdSec.md - - cryptpad: portainer-stacks/cryptpad.md - - dashy: portainer-stacks/dashy.md - - digiKam: portainer-stacks/digiKam.md - - Dillinger: portainer-stacks/Dillinger.md - - Drone: portainer-stacks/Drone.md - - ethercalc: portainer-stacks/ethercalc.md - - Gitea: portainer-stacks/Gitea.md - - guacamole: portainer-stacks/guacamole.md - - heimdall: portainer-stacks/heimdall.md - - invidious: portainer-stacks/invidious.md - - jellyfin: portainer-stacks/jellyfin.md - - LibrePhotos: portainer-stacks/LibrePhotos.md - - Librespeed: portainer-stacks/Librespeed.md - - mealie: portainer-stacks/mealie.md - - mqtt-explorer: portainer-stacks/mqtt-explorer.md - - MQTT-Mosquitto: portainer-stacks/MQTT-Mosquitto.md - - n8n: portainer-stacks/n8n.md - - Nextcloud: portainer-stacks/Nextcloud.md - - octoprint: portainer-stacks/octoprint.md - - Ombi: portainer-stacks/Ombi.md - - onlyoffice: portainer-stacks/onlyoffice.md - - Overseerr: portainer-stacks/Overseerr.md - - phoneinfoga: portainer-stacks/phoneinfoga.md - - PhotoView: portainer-stacks/PhotoView.md - - piped: portainer-stacks/piped.md - - Prowlarr: portainer-stacks/Prowlarr.md - - qbittorrent: portainer-stacks/qbittorrent.md - - rustdesk: portainer-stacks/rustdesk.md - - samba: portainer-stacks/samba.md - - shlink: portainer-stacks/shlink.md - - Swag: portainer-stacks/Swag.md - - tailscale: portainer-stacks/tailscale.md - - TasmoBackup: portainer-stacks/TasmoBackup.md - - Tasmota-Device-Manager: portainer-stacks/Tasmota-Device-Manager.md - - Transmission: portainer-stacks/Transmission.md - - tvheadend: portainer-stacks/tvheadend.md - - uptime-kuma: portainer-stacks/uptime-kuma.md - - VSCode: portainer-stacks/VSCode.md - - Whisparr: portainer-stacks/Whisparr.md - - WireGuard: portainer-stacks/WireGuard.md - - Zigbee2MQTT: portainer-stacks/Zigbee2MQTT.md - - Swag: - - Swag: portainer-stacks/Swag.md - - Swag MODs: portainer-stacks/Swag/Swag-MODS.md - - Authelia: portainer-stacks/authelia.md - - Theme-Park: portainer-stacks/Swag/adding-theme-park.md - - cmnds: - - 101: cmnds/101.md - - AddUser 1Line: cmnds/adduser-1line.md - - Tasmota Backlogs: cmnds/tasmota-backlogs.md - - sthope: '/portainer-stacks/' \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index d0255a4..52b6d3a 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -5,7 +5,6 @@ edit_uri: _edit/master/docs/ site_url: https://wiki.sthope.dev site_author: sthope - theme: name: material language: en @@ -34,11 +33,11 @@ theme: - search.suggest plugins: - - git-revision-date + # - git-revision-date - search - minify: minify_html: true - - external-markdown + # - external-markdown markdown_extensions: - abbr @@ -59,7 +58,7 @@ markdown_extensions: - pymdownx.superfences # allows for the nesting of code blocks inside other blocks - pymdownx.keys -copyright: Sthope © 2022 +copyright: Sthope © 2024 extra: social: - icon: 'fontawesome/brands/github' @@ -73,8 +72,6 @@ extra: name: Message me on Discord nav: - # - Tutorials: - # - MKDocs with Gitea and Drone: tutorials/mkdocs-with-gitea-and-drone.md - Proxmox: # - Debian VM: proxmox/Debian-VM.md - Home Assistant on Proxmox: proxmox/how-to-install-home-assistant.md @@ -83,62 +80,56 @@ nav: - Proxmox send CPU Temp to Home-Assistant/MQTT: proxmox/send-cpu-temp-to-ha.md - Ubuntu VM Resize Disk: proxmox/ubuntu-vm-resize-disk.md # - VM Passthrough Harddrives: proxmox/vm-passthrough-harddrives.md - - Portainer Stacks: - - Airsonic: portainer-stacks/Airsonic.md - - authelia: portainer-stacks/authelia.md - - Authentik: portainer-stacks/Authentik.md - - bazarr: portainer-stacks/bazarr.md - - Bitwarden: portainer-stacks/Bitwarden.md - - CrowdSec: portainer-stacks/CrowdSec.md - - cryptpad: portainer-stacks/cryptpad.md - - dashy: portainer-stacks/dashy.md - - digiKam: portainer-stacks/digiKam.md - - Dillinger: portainer-stacks/Dillinger.md - - Drone: portainer-stacks/Drone.md - - ethercalc: portainer-stacks/ethercalc.md - - Gitea: portainer-stacks/Gitea.md - - guacamole: portainer-stacks/guacamole.md - - heimdall: portainer-stacks/heimdall.md - - invidious: portainer-stacks/invidious.md - - jellyfin: portainer-stacks/jellyfin.md - - LibrePhotos: portainer-stacks/LibrePhotos.md - - Librespeed: portainer-stacks/Librespeed.md - - mealie: portainer-stacks/mealie.md - - mqtt-explorer: portainer-stacks/mqtt-explorer.md - - MQTT-Mosquitto: portainer-stacks/MQTT-Mosquitto.md - - n8n: portainer-stacks/n8n.md - - Nextcloud: portainer-stacks/Nextcloud.md - - octoprint: portainer-stacks/octoprint.md - - Ombi: portainer-stacks/Ombi.md - - onlyoffice: portainer-stacks/onlyoffice.md - - Overseerr: portainer-stacks/Overseerr.md - - phoneinfoga: portainer-stacks/phoneinfoga.md - - PhotoView: portainer-stacks/PhotoView.md - - piped: portainer-stacks/piped.md - - Prowlarr: portainer-stacks/Prowlarr.md - - qbittorrent: portainer-stacks/qbittorrent.md - - rustdesk: portainer-stacks/rustdesk.md - - samba: portainer-stacks/samba.md - - shlink: portainer-stacks/shlink.md - - Swag: portainer-stacks/Swag.md - - tailscale: portainer-stacks/tailscale.md - - TasmoBackup: portainer-stacks/TasmoBackup.md - - Tasmota-Device-Manager: portainer-stacks/Tasmota-Device-Manager.md - - Transmission: portainer-stacks/Transmission.md - - tvheadend: portainer-stacks/tvheadend.md - - uptime-kuma: portainer-stacks/uptime-kuma.md - - VSCode: portainer-stacks/VSCode.md - - Whisparr: portainer-stacks/Whisparr.md - - WireGuard: portainer-stacks/WireGuard.md - - Zigbee2MQTT: portainer-stacks/Zigbee2MQTT.md - - Swag: - - Swag: portainer-stacks/Swag.md - - Swag MODs: portainer-stacks/Swag/Swag-MODS.md - - Authelia: portainer-stacks/authelia.md - - Theme-Park: portainer-stacks/Swag/adding-theme-park.md + - Docker Composes: + - docker-compose/Airsonic.md + - docker-compose/Authentik.md + - docker-compose/Bitwarden.md + - docker-compose/CrowdSec.md + - docker-compose/Dillinger.md + - docker-compose/Drone.md + - docker-compose/Gitea.md + - docker-compose/LibrePhotos.md + - docker-compose/Librespeed.md + - docker-compose/MQTT-Mosquitto.md + - docker-compose/Nextcloud.md + - docker-compose/Ombi.md + - docker-compose/Overseerr.md + - docker-compose/PhotoView.md + - docker-compose/Prowlarr.md + - docker-compose/Swag.md + - docker-compose/TasmoBackup.md + - docker-compose/Tasmota-Device-Manager.md + - docker-compose/Transmission.md + - docker-compose/VSCode.md + - docker-compose/Whisparr.md + - docker-compose/WireGuard.md + - docker-compose/Zigbee2MQTT.md + - docker-compose/authelia.md + - docker-compose/bazarr.md + - docker-compose/cryptpad.md + - docker-compose/dashy.md + - docker-compose/digiKam.md + - docker-compose/ethercalc.md + - docker-compose/guacamole.md + - docker-compose/heimdall.md + - docker-compose/invidious.md + - docker-compose/jdownloader.md + - docker-compose/jellyfin.md + - docker-compose/mealie.md + - docker-compose/mqtt-explorer.md + - docker-compose/n8n.md + - docker-compose/octoprint.md + - docker-compose/onlyoffice.md + - docker-compose/phoneinfoga.md + - docker-compose/piped.md + - docker-compose/qbittorrent.md + - docker-compose/rustdesk.md + - docker-compose/samba.md + - docker-compose/shlink.md + - docker-compose/tailscale.md + - docker-compose/tvheadend.md + - docker-compose/uptime-kuma.md - cmnds: - 101: cmnds/101.md - AddUser 1Line: cmnds/adduser-1line.md - - Tasmota Backlogs: cmnds/tasmota-backlogs.md - - sthope: '/portainer-stacks/' - \ No newline at end of file + - Tasmota Backlogs: cmnds/tasmota-backlogs.md \ No newline at end of file diff --git a/requirements.ol b/requirements.ol deleted file mode 100644 index 38a2800..0000000 --- a/requirements.ol +++ /dev/null @@ -1,7 +0,0 @@ -mkdocs==1.3.0 -mkdocs-material==8.2.10 -mkdocs-material-extensions==1.0.3 -mkdocs-minify-plugin==0.5.0 -mkdocs-git-revision-date-plugin==0.3.2 -pymdown-extensions==9.3 - diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 081591f..0000000 --- a/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mkdocs==1.2.1 -mkdocs-material==7.1.9 -mkdocs-material-extensions==1.0.1 -mkdocs-minify-plugin==0.4.0 -mkdocs-git-revision-date-plugin==0.3.1 -pymdown-extensions==8.2 -mkdocs-embed-external-markdown -Jinja2==3.0.1 \ No newline at end of file diff --git a/scripts/git.py b/scripts/git.py deleted file mode 100644 index 980f633..0000000 --- a/scripts/git.py +++ /dev/null @@ -1,33 +0,0 @@ -#!/usr/bin/env python3 - -import os -import subprocess -import argparse - -# Parse command-line arguments -parser = argparse.ArgumentParser(description="Generate navigation entries for mkdocs.yml") -parser.add_argument("--replace", action="store_true", help="Replace mkdocs.yml with new content") -parser.add_argument("--COMMIT_MSG", help="Commit message for Git") -args = parser.parse_args() - -# Get the commit message from command-line argument or prompt user -if args.COMMIT_MSG: - commit_msg = args.COMMIT_MSG -else: - commit_msg = input("Enter commit message: ") - if not commit_msg.strip(): # Check if the input message is empty - commit_msg = "Initial commit" # Set default commit message - -# Add changes to the staging area -subprocess.run(["python3", "./scripts/list_new_docker_files.py", "--replace"], check=True) - -# Add changes to the staging area -subprocess.run(["git", "add", "."], check=True) - -# Commit changes -subprocess.run(["git", "commit", "-m", commit_msg], check=True) - -# Push changes -subprocess.run(["git", "push"], check=True) - -print("Changes have been added, committed, and pushed.") diff --git a/scripts/list_new_docker_files.py b/scripts/list_new_docker_files.py deleted file mode 100644 index fe0129c..0000000 --- a/scripts/list_new_docker_files.py +++ /dev/null @@ -1,72 +0,0 @@ -import os -import argparse - -# Read the original mkdocs.yml content -with open('mkdocs.yml', 'r') as file: - lines = file.readlines() - -# Find the start and end indexes of the section to replace -start_index = None -end_index = None -for i, line in enumerate(lines): - if line.strip() == '- Portainer Stacks:': - start_index = i - elif line.strip() == '- Swag:': - end_index = i - break - -# Replace the lines between start and end indexes with the new content -if start_index is not None and end_index is not None: - lines[start_index:end_index + 1] = [' - Portainer Stacks:\n', ' - Swag:\n'] - -# Write the modified content back to the mkdocs.yml file -with open('mkdocs.yml', 'w') as file: - file.writelines(lines) - -# Define the directory containing Portainer Stack Markdown files -markdown_dir = "./docs/portainer-stacks" - -# Define the relative path prefix used in mkdocs.yml -relative_path_prefix = "portainer-stacks/" - -# Read the existing mkdocs.yml content -with open("mkdocs.yml", "r") as f: - mkdocs_content = f.read() - -# Parse command-line arguments -parser = argparse.ArgumentParser(description="Generate navigation entries for mkdocs.yml") -parser.add_argument("--replace", action="store_true", help="Replace mkdocs.yml with new content") -args = parser.parse_args() - -# Generate navigation entries -nav_entries = [] -for filename in os.listdir(markdown_dir): - if filename.endswith(".md"): - title = filename[:-3] # Remove ".md" extension - relative_path = f"{relative_path_prefix}{filename}" # Generate relative path - nav_entries.append(f" - {title}: {relative_path}") # Add 4 spaces - -# List of names to ignore -names_to_ignore = ["template"] # Add names you want to ignore here - -# Filter out entries to ignore -filtered_nav_entries = [entry for entry in nav_entries if not any(name in entry for name in names_to_ignore)] - -# Sort the navigation entries alphabetically (case-insensitive) -sorted_nav_entries = sorted(filtered_nav_entries, key=lambda entry: entry.lower()) - -# If --replace option is provided, replace the existing "Portainer Stacks" section -if args.replace: - # Combine all the sorted navigation entries into a single string - new_section_content = "\n".join(sorted_nav_entries) - - # Replace the existing "Portainer Stacks" section - updated_mkdocs_content = mkdocs_content.replace(" - Portainer Stacks:\n", f" - Portainer Stacks:\n{new_section_content}\n") - - # Write the updated content back to mkdocs.yml - with open("mkdocs.yml", "w") as f: - f.write(updated_mkdocs_content) -else: - # Print the sorted navigation entries with 4 spaces - for entry in sorted_nav_entries: - print(entry)