Hello everybody,
today I want to write a few words about how to work with Docker with help of C#.
Recently I've got a challenge to find the way how to manage Docker. Initially I've tried Docker.Dotnet library. It has quite interesting options for management of docker, but from my own prospec...
Hello everybody,
today I want to document how to permanently open port in CentOS linux permanently. You can achieve it with following command:
firewall-cmd --zone=public --add-port=22/tcp --permanent
or with usage of iptables:
iptables -I INPUT -p tcp -m tcp --dport 80 -j ACCEPT
Key --permanent e...