add: add CLAUDE.md for homelab guidance and add compose files for karakeep, nginx-proxy-manager, and pihole services

This commit is contained in:
2026-05-02 02:38:05 +00:00
parent acb9ee5bfe
commit 5bee35eccf
4 changed files with 162 additions and 0 deletions

17
pihole/compose.yaml Normal file
View File

@@ -0,0 +1,17 @@
services:
pihole:
image: pihole/pihole:latest
container_name: pihole
ports:
- "53:53/tcp"
- "53:53/udp"
- "8026:80/tcp"
environment:
TZ: Asia/Ho_Chi_Minh
FTLCONF_webserver_api_password: "changeme"
FTLCONF_dns_listeningMode: ALL
volumes:
- /docker/pihole/etc-pihole:/etc/pihole
cap_add:
- SYS_NICE
restart: unless-stopped