quarta-feira, 23 de março de 2022

Expose the Docker API (un-encrypted-http)

0 comentários
 mtabishk/expose-docker-api: How to expose Docker API (UN-ENCRYPTED) (github.com)Step 1: Edit /lib/systemd/system/docker.service fileStep 2: Update ExecStart= ... -H=tcp://0.0.0.0:2378Step 3: Reload the daemon and restart the docker serv ...
Continue reading →
quinta-feira, 17 de março de 2022

Secondary DNS Server for DHCP

0 comentários
 Secondary DNS Server for DHCP - Help - Pi-hole Userspacesudo nano /etc/dnsmasq.d/02-pihole-dhcp.confdhcp-option=6,Pi-holeIP,SecondaryDNSIPsudo service pihole-FTL rest ...
Continue reading →
domingo, 6 de março de 2022

Install Docker

0 comentários
Fonte: Install Docker-Compose on Raspberry Pi - JFrog Connectcurl -fsSL https://get.docker.com -o get-docker.shsudo sh get-docker.sh‍sudo usermod -aG docker ${USER}docker volume create portainer_datadocker run -d -p 8000:8000 -p 9443:9443 --name portainer \    --restart=always \    -v /var/run/docker.sock:/var/run/docker.sock \    -v portainer_data:/data \    portainer/portainer-ce:2.11.1sudo apt-get install \jq \wget \curl \udisks2 \libglib2.0-bin \network-manager \apparmor \dbus -y https://github.com/home-assistant/supervised-installerwget -O - https://get.hacs.xyz ...
Continue reading →

Install the LAMP Stack on Windows WSL

0 comentários
 Fonte: How to Install the LAMP Stack on Windows WSL - Website for StudentsInstall Apache HTTP ServerThe A in LAMP stands for Apache HTTP server. Apache is the most popular open source web server powering majority of the websites online.To install Apache on Ubuntu, run the commands below:sudo apt update sudo apt install apache2After installing Apache2, the commands below can be used to stop, start and restart Apache2 ...
Continue reading →