Compare commits

...
15 Commits
Author SHA1 Message Date
Mike McFetridge e0fd61d4d5 Update
Deploy searxng / deploy (push) Successful in 7s
2026-08-11 08:27:30 -04:00
Mike McFetridge e8cb9bdaaa sear-Update
Deploy searxng / deploy (push) Successful in 7s
2026-08-11 08:25:32 -04:00
Mike McFetridge fdd15925ae Sear-update
Deploy searxng / deploy (push) Successful in 8s
2026-08-11 08:22:30 -04:00
Mike McFetridge 5906995a65 .
Deploy searxng / deploy (push) Failing after 6s
2026-08-11 08:21:13 -04:00
Mike McFetridge b5974ffa86 .
Deploy searxng / deploy (push) Failing after 6s
2026-08-11 08:18:16 -04:00
Mike McFetridge f19cf926e8 Update
Deploy Homepage / deploy (push) Successful in 7s
2026-07-26 08:35:47 -04:00
Mike McFetridge 21c30ee072 Update
Deploy Homepage / deploy (push) Successful in 8s
2026-07-26 08:34:44 -04:00
Mike McFetridge a9f0b121c6 update watchtower
Deploy Watchtower / deploy (push) Successful in 9s
2026-07-25 08:19:39 -04:00
Mike McFetridge f7a88f4a34 update
Deploy NginxProxyManager / deploy (push) Successful in 14s
2026-07-24 19:15:52 -04:00
Mike McFetridge a089a27771 .
Deploy NginxProxyManager / deploy (push) Failing after 7s
2026-07-24 19:14:06 -04:00
Mike McFetridge 62de3c75e5 update health chrck
Deploy NginxProxyManager / deploy (push) Failing after 2m2s
2026-07-24 19:12:00 -04:00
Mike McFetridge 15968c489b update
Deploy NginxProxyManager / deploy (push) Successful in 18s
Deploy Watchtower / deploy (push) Successful in 8s
2026-07-22 20:23:34 -04:00
Mike McFetridge 4c4ddd20df .
Deploy Watchtower / deploy (push) Successful in 8s
2026-07-21 17:28:55 -04:00
Mike McFetridge e12cd877f1 .
Deploy Homepage / deploy (push) Successful in 8s
2026-07-20 18:41:12 -04:00
Mike McFetridge 198e49cb92 .
Deploy Homepage / deploy (push) Successful in 8s
2026-07-20 18:39:04 -04:00
6 changed files with 72 additions and 55 deletions
+9 -9
View File
@@ -252,12 +252,12 @@
- Nginx Proxy Manager:
id: emerald
tab: Network
href: http://192.168.2.12:81
href: http://192.168.2.14:81
icon: nginx-proxy-manager.png
description: Nginx Proxy Manager
widget:
type: npm
url: http://192.168.2.12:81
url: http://192.168.2.14:81
username: mmcfetridg@aol.com
password: "!Sucyetat123"
fields: ["enabled", "disabled", "total"]
@@ -314,14 +314,14 @@
type: customapi
url: https://patch.mikemcfetridge.com/api/v1/gethomepage/stats
headers:
Authorization: Basic cGF0Y2htb25fYWVfYzJlZGUxODcyNzI4NDU0MTM1ZWI5ZWE3ZThkYmY1MTY6MzdlMDdlNjM4YjFiMjUzYjIyYWFjMWQ3ODA0ZTdhODExZTM0ZTMzNGM0MDczMjI5YWQwN2EwYjIzODU2NDhhOQ==
Authorization: Basic cGF0Y2htb25fYWVfNTIxMmM5ZDg4M2E1NzA0NGIzZmJhZDdhMzQyYjVlODg6MTI0YzlhYzQ3ZTBlM2EzYWZiMTdjOTE5MWExYzU5M2YxOGJhNDdkYWQ0NjBjZmU2MDJmZDQ5MzE2ZDM0MTQ1Ng==
mappings:
- field: total_hosts
label: Total Hosts
- field: hosts_needing_updates
label: Needs Updates
- field: security_updates
label: Security Updates
- field: total_hosts
label: Total Hosts
- field: hosts_needing_updates
label: Needs Updates
- field: security_updates
label: Security Updates
############################################## Bookmark TAB Services #############################################################
- Bookmarks:
+13
View File
@@ -0,0 +1,13 @@
# ============================================================
# SYSTEM SETTINGS
# ============================================================
TZ=America/New_York
DATA_PATH=/opt/Docker-Deployments/NginxProxyManager/data
# ============================================================
# DATABASE CREDENTIALS
# ============================================================
MYSQL_ROOT_PASSWORD=rhDGjilZm6XEMJ
MYSQL_DATABASE=npm
MYSQL_USER=npm
MYSQL_PASSWORD=rhDGjilZm6XEMJ
+21 -19
View File
@@ -1,52 +1,54 @@
#
# Nginx Proxy Manager & MariaDB Stack
services:
db:
image: 'jc21/mariadb-aria:latest'
image: jc21/mariadb-aria:latest
container_name: npm-db
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=rhDGjilZm6XEMJ
- MYSQL_DATABASE=npm
- MYSQL_USER=npm
- MYSQL_PASSWORD=rhDGjilZm6XEMJ
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
- MYSQL_DATABASE=${MYSQL_DATABASE}
- MYSQL_USER=${MYSQL_USER}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
- MARIADB_AUTO_UPGRADE=1
- TZ=${TZ}
volumes:
- /opt/Docker-Deployments/NginxProxyManager/data/mysql:/var/lib/mysql
- ${DATA_PATH}/mysql:/var/lib/mysql
networks:
- internal
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-u$MYSQL_USER", "-p$MYSQL_PASSWORD"]
test: ["CMD-SHELL", "mariadb-admin ping -h 127.0.0.1 -u root -p$$MYSQL_ROOT_PASSWORD || exit 1"]
interval: 20s
timeout: 5s
retries: 5
start_period: 30s
nginx-proxy-manager:
image: 'jc21/nginx-proxy-manager:latest'
image: jc21/nginx-proxy-manager:latest
container_name: nginx-proxy-manager
restart: unless-stopped
environment:
- TZ=America/New_York
- TZ=${TZ}
- DB_MYSQL_HOST=db
- DB_MYSQL_PORT=3306
- DB_MYSQL_USER=npm
- DB_MYSQL_PASSWORD=rhDGjilZm6XEMJ
- DB_MYSQL_NAME=npm
- DB_MYSQL_USER=${MYSQL_USER}
- DB_MYSQL_PASSWORD=${MYSQL_PASSWORD}
- DB_MYSQL_NAME=${MYSQL_DATABASE}
ports:
- '80:80'
- '81:81'
- '443:443'
volumes:
- /opt/Docker-Deployments/NginxProxyManager/data/npm:/data
- /opt/Docker-Deployments/NginxProxyManager/data/letsencrypt:/etc/letsencrypt
- /opt/Docker-Deployments/NginxProxyManager/logs:/data/logs
- ${DATA_PATH}/npm:/data
- ${DATA_PATH}/letsencrypt:/etc/letsencrypt
depends_on:
- db
db:
condition: service_healthy
restart: true
networks:
- internal
- external
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:81/api/status"]
test: ["CMD", "curl", "-f", "http://localhost:81/"]
interval: 20s
timeout: 5s
retries: 5
@@ -56,4 +58,4 @@ networks:
internal:
external: true
external:
external: true
external: true
+4 -4
View File
@@ -1,11 +1,13 @@
TZ=America/New_York
PUID=1000
PGID=1000
WATCHTOWER_CLEANUP=true
WATCHTOWER_INCLUDE_RESTARTING=true
WATCHTOWER_ROLLING_RESTARTING=true
WATCHTOWER_SCHEDULE=0 0 4 * * *
WATCHTOWER_SCHEDULE="0 0 4 * * *"
WATCHTOWER_INCLUDE_STOPPED=true
WATCHTOWER_NOTIFICATIONS=email
WATCHTOWER_NOTIFICATIONS_HOSTNAME=Docker-Deply # Add Server Name or IP Address
WATCHTOWER_NOTIFICATIONS_HOSTNAME=Docker-02
WATCHTOWER_NOTIFICATION_EMAIL_FROM=miker@mmcfetridge.net
WATCHTOWER_NOTIFICATION_EMAIL_TO=miker@mmcfetridge.net
WATCHTOWER_NOTIFICATION_EMAIL_SERVER=mail.mmcfetridge.net
@@ -13,5 +15,3 @@ WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT=465
WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER=miker@mmcfetridge.net
WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD=!Sucyetat123
WATCHTOWER_NOTIFICATION_EMAIL_DELAY=2
PUID=1000
PGID=1000
+22 -20
View File
@@ -1,28 +1,29 @@
services:
watchtower:
image: containrrr/watchtower
image: nickfedor/watchtower:latest
container_name: watchtower
restart: unless-stopped
env_file: .env
env_file:
- .env
environment:
- DOCKER_API_VERSION=1.44
- TZ=America/New_York
- PUID:=1000 # Reference PUID from .env
- PGID=1000 # Reference PGID from .env
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_INCLUDE_RESTARTING=true
- WATCHTOWER_ROLLING_RESTARTING=true
- WATCHTOWER_SCHEDULE=0 0 4 * * *
- WATCHTOWER_INCLUDE_STOPPED=true
- WATCHTOWER_NOTIFICATIONS=email
- WATCHTOWER_NOTIFICATIONS_HOSTNAME=Docker-Deployment # Add Server Name or IP Address
- WATCHTOWER_NOTIFICATION_EMAIL_FROM=miker@mmcfetridge.net
- WATCHTOWER_NOTIFICATION_EMAIL_TO=miker@mmcfetridge.net
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER=mail.mmcfetridge.net
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT=465
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER=miker@mmcfetridge.net
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD=!Sucyetat123
- WATCHTOWER_NOTIFICATION_EMAIL_DELAY=2
- TZ=${TZ}
- PUID=${PUID}
- PGID=${PGID}
- WATCHTOWER_CLEANUP=${WATCHTOWER_CLEANUP}
- WATCHTOWER_INCLUDE_RESTARTING=${WATCHTOWER_INCLUDE_RESTARTING}
- WATCHTOWER_ROLLING_RESTARTING=${WATCHTOWER_ROLLING_RESTARTING}
- WATCHTOWER_SCHEDULE=${WATCHTOWER_SCHEDULE}
- WATCHTOWER_INCLUDE_STOPPED=${WATCHTOWER_INCLUDE_STOPPED}
- WATCHTOWER_NOTIFICATIONS=${WATCHTOWER_NOTIFICATIONS}
- WATCHTOWER_NOTIFICATIONS_HOSTNAME=${WATCHTOWER_NOTIFICATIONS_HOSTNAME}
- WATCHTOWER_NOTIFICATION_EMAIL_FROM=${WATCHTOWER_NOTIFICATION_EMAIL_FROM}
- WATCHTOWER_NOTIFICATION_EMAIL_TO=${WATCHTOWER_NOTIFICATION_EMAIL_TO}
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER=${WATCHTOWER_NOTIFICATION_EMAIL_SERVER}
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT=${WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT}
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER=${WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER}
- WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD=${WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD}
- WATCHTOWER_NOTIFICATION_EMAIL_DELAY=${WATCHTOWER_NOTIFICATION_EMAIL_DELAY}
security_opt:
- no-new-privileges:true
volumes:
@@ -31,6 +32,7 @@ services:
- /var/run/docker.sock:/var/run/docker.sock
networks:
- external
networks:
external:
external: true # Tells Compose not to create this network.
external: true
+3 -3
View File
@@ -4,16 +4,16 @@ services:
image: docker.io/searxng/searxng:latest
restart: unless-stopped
ports:
- "8080:8080"
- "8081:8080"
volumes:
- /opt/Docker-Deployments/searxng:/etc/searxng:rw
- /opt/Docker-Deployments/searxng_cache:/var/cache/searxng:rw
- /opt/Docker-Deployments/searxng/searxng_cache:/var/cache/searxng:rw
environment:
- SEARXNG_BASE_URL=https://search.mikemcfetridge.com
- UWSGI_WORKERS=${SEARXNG_UWSGI_WORKERS:-4}
- UWSGI_THREADS=${SEARXNG_UWSGI_THREADS:-4}
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8080" ]
test: [ "CMD", "curl", "-f", "http://localhost:8081" ]
interval: 10s
retries: 3
timeout: 10s