This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.light-mode { | |
--scalar-background-1: #fff; | |
--scalar-background-2: #f8fafc; | |
--scalar-background-3: #e7e7e7; | |
--scalar-background-accent: #8ab4f81f; | |
--scalar-color-1: #000; | |
--scalar-color-2: #6b7280; | |
--scalar-color-3: #9ca3af; | |
--scalar-color-accent: #00c16a; | |
--scalar-border-color: #e5e7eb; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.8" | |
services: | |
# MongoDB database | |
database: | |
image: mongo:4.4.16 | |
restart: always | |
volumes: | |
- ./data/db:/data/db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
cd /var/lib/pterodactyl/volumes | |
# Get the initial free disk space | |
initial_space=$(df -h . | awk 'NR==2 {print $4}') | |
echo "1. Clearing docker caches, stopped containers, unused images" | |
docker system prune --force |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
echo "DDos Detect by masusniper#0666"; | |
interface=$(ip -o -4 route show to default | awk '{print $5}') | |
dumpdir=/root/dumps | |
echo -e "Using interface ${interface}" | |
mkdir $dumpdir |