/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

suraj.io
| | www.tumfatig.net
2.4 parsecs away

Travel
| | The OpenBSD virtual machine daemon works pretty well with Linux VMs nowadays. This was time for me to see if I could replace the Synology Docker service with some Docker host provided by vmd(8).
| | blog.kyleingraham.com
3.8 parsecs away

Travel
| | I recently configured Lip Colour Finder to utilize systemd to manage its components. This post will be a small nugget on that process as opposed to the usual deep-dive. Systemd is a software suite that can be used for the management of system processes. I turned to it as I wanted to achieve the following...
| | ketanvijayvargiya.com
3.4 parsecs away

Travel
| | Setup # Installation guide: https://docs.docker.com/engine/install/ubuntu/ No sudo: Check this to allow Docker containers to run as non-root. See what's running #docker ps Container-specific commands ## SSH into a running container. docker exec -it 0061ecc7ef37 /bin/bash # Restart docker restart 52835f0907e8 # Stop docker container stop 23642fbe8515 # Stop all docker stop $(docker ps -a -q) # Prune all stopped containers docker container prune Parameters for docker run # -d: Run as daemon. -p 8439:8080: Map port A externally to B internally. -v ~/Documents/TiddlyWikiDockerVolume:/var/lib/tiddlywiki: Map volume A externally to B internally. -e USERNAME="abc": Environment variable. --restart unless-stopped: Automatically bring up the container on Docker daemon...
| | akoutmos.com
11.2 parsecs away

Travel
| Learn how to use Elixir 1.9 releases along with multi-stage docker builds