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
| #!/bin/bash | |
| # K3s Interactive Installer | |
| # This script provides a menu-driven interface to install a k3s master or worker node, | |
| # and to install the Kubernetes Dashboard. | |
| # --- Colors for better readability --- | |
| NC='\033[0m' # No Color | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' |
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.3' | |
| services: | |
| adguardhome: | |
| image: adguard/adguardhome | |
| container_name: adguardhome | |
| volumes: | |
| - /etc/adguard/workdir:/opt/adguardhome/work | |
| - /etc/adguard/confdir:/opt/adguardhome/conf | |
| ports: | |
| - 53:53/tcp |