This file contains hidden or 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: "2.1" | |
services: | |
soulseek: | |
image: realies/soulseek | |
container_name: soulseek | |
network_mode: "service:vpn" | |
restart: unless-stopped | |
volumes: | |
- .soulseek/appdata:/data/.SoulseekQt | |
- .soulseek/downloads:/data/Soulseek Downloads |
This file contains hidden or 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
REM Convert Windows Server Eval to full edition | |
@echo off | |
echo "[INFO] Converting to full edition..." | |
dism /online /set-edition:serverstandard /productkey:KEY-KEY-KEY-KEY-KEY /accepteula | |
echo "[OK] Done, have a nice day!" |
This file contains hidden or 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: "2.1" | |
services: | |
smokeping: | |
image: jlesage/jdownloader-2 | |
container_name: jdownloader | |
environment: | |
- PUID=1500 | |
- PGID=1500 | |
- TZ=Your/Timezone |
This file contains hidden or 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
# Set High Performance profile | |
powercfg.exe /setactive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c | |
# Disable monitor timeout | |
powercfg.exe /change monitor-timeout-ac 0 | |
powercfg.exe /change monitor-timeout-dc 0 | |
# Disable standby timeout | |
powercfg.exe /change standby-timeout-ac 0 | |
powercfg.exe /change standby-timeout-dc 0 |
This file contains hidden or 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" | |
services: | |
pihole: | |
container_name: pi-hole-main | |
image: pihole/pihole:latest | |
hostname: pi-hole.example.com | |
ports: | |
- "127.0.0.1:5353:53/tcp" | |
- "127.0.0.1:5353:53/udp" | |
- "127.0.0.1:9004:80/tcp" |
This file contains hidden or 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: '2.1' | |
services: | |
speedtest: | |
container_name: speedtest | |
image: henrywhitaker3/speedtest-tracker | |
ports: | |
- 8765:80 | |
volumes: | |
- /srv/speedtest:/config | |
environment: |
This file contains hidden or 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" | |
services: | |
mc: | |
image: itzg/minecraft-server | |
ports: | |
- 25565:25565 | |
environment: | |
EULA: "TRUE" | |
MOTD: ".:: §cSimple §aMinecraft§f Server ::." |
This file contains hidden or 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.9" | |
name: torrent-stack | |
services: | |
vpn: | |
container_name: vpn | |
image: qmcgaw/gluetun | |
cap_add: | |
- NET_ADMIN | |
environment: | |
# Set this according to your VPN provider |
This file contains hidden or 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' | |
volumes: | |
prometheus_data: {} | |
grafana_data: {} | |
services: | |
node-exporter: | |
image: prom/node-exporter:latest | |
container_name: local-node-exporter |