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
080mail.com | |
0u.ro | |
0v.ro | |
0w.ro | |
1000mail.com | |
100m.hl.cninfo.net | |
109.62.115.106 | |
10m.in | |
10mail.com | |
10minutemail.us |
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 | |
# docker-compose example: | |
#version: "3.9" | |
#services: | |
# qbittorrent: | |
# image: lscr.io/linuxserver/qbittorrent:latest | |
# environment: | |
# - UPTIME_KUMA_API_KEY=your_api_key | |
# volumes: |
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
FROM postgres:17-alpine | |
# Install required dependencies | |
RUN apk add --no-cache gcc musl-dev make g++ postgresql-dev git clang llvm llvm-dev | |
# Clone the system_stats repository from EnterpriseDB GitHub | |
RUN git clone --depth 1 https://github.com/EnterpriseDB/system_stats.git /build/system_stats | |
# Build and install the system_stats extension | |
WORKDIR /build/system_stats |