- IP: 192.168.1.200
- Port: 51820
pivpn add
Important: For each user that wants to use Wireguard a distinct client profile should be created!
Source: https://docs.docker.com/engine/install/debian/
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
In a big project, some threads are there to do some background task such as sending data, performing periodic garbage collection etc. It can be done by non-daemon thread. But if non-daemon thread is used, the main thread has to keep track of them manually. However, using daemon thread the main thread can completely forget about this task and this task will either complete or be killed when main thread exits.