removed checkmk and memos

This commit is contained in:
2025-03-29 22:22:15 -05:00
parent f6e1df6e12
commit 4945886e0a
4 changed files with 0 additions and 96 deletions

View File

@@ -1,14 +0,0 @@
CLIENT_HOST="http://192.168.1.33:5173"
JWT_SECRET="Tei2ieZae8ech7aesahghahkoer1ieNgeiGhui9y"
DB_TYPE="MongoDB"
DB_CONNECTION_STRING="mongodb://localhost:27017/uptime_db"
REDIS_HOST="127.0.0.1"
REDIS_PORT=6379
TOKEN_TTL="99d"
PAGESPEED_API_KEY=<api_key>
SYSTEM_EMAIL_HOST="smtp.gmail.com"
SYSTEM_EMAIL_PORT=465
SYSTEM_EMAIL_ADDRESS=<email_address>
SYSTEM_EMAIL_PASSWORD=<password>
REFRESH_TOKEN_SECRET="phaeho6WooDahmec6CheeghefieNgur5aegheepo"
REFRESH_TOKEN_TTL="99d"

View File

@@ -1,67 +0,0 @@
services:
client:
container_name: checkmate-client
image: bluewaveuptime/uptime_client:latest
restart: always
environment:
UPTIME_APP_API_BASE_URL: "http://192.168.1.33:5000/api/v1"
networks:
- checkmate
- reverseproxy
ports:
- "5173:80"
depends_on:
- server
server:
container_name: checkmate-server
image: bluewaveuptime/uptime_server:latest
restart: always
networks:
- checkmate
- reverseproxy
ports:
- "5000:5000"
depends_on:
- redis
- mongodb
environment:
- DB_CONNECTION_STRING=mongodb://mongodb:27017/uptime_db
- REDIS_HOST=redis
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
redis:
container_name: checkmate-redis
image: bluewaveuptime/uptime_redis:latest
restart: always
networks:
- checkmate
ports:
- "6379:6379"
volumes:
- ./redis/data:/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 30s
timeout: 10s
retries: 5
start_period: 5s
mongodb:
container_name: checkmate-mongodb
image: bluewaveuptime/uptime_database_mongo:latest
restart: always
volumes:
- ./mongo/data:/data/db
command: ["mongod", "--quiet"]
networks:
- checkmate
ports:
- "27017:27017"
networks:
checkmate:
name: checkmate
reverseproxy:
external: true

View File

@@ -10,7 +10,6 @@ services:
pid: host
volumes:
- /var/run/docker.sock:/var/run/docker.sock
# Uncomment the below line if you want glances to display host OS detail instead of container's
- /etc/os-release:/etc/os-release:ro
environment:
- "GLANCES_OPT=-w"

View File

@@ -1,14 +0,0 @@
services:
memos:
image: neosmemo/memos:stable
container_name: memos
volumes:
- ./memos/:/var/opt/memos
networks:
- reverseproxy
ports:
- 5230:5230
networks:
reverseproxy:
external: true