Posts with "linux" Tag
Add a User in a Docker Container with a custom password
by danaukes
password="1YelloDog@"
pass=$(perl -e 'print crypt($ARGV[0], "password")' $password)
echo "$pass"
External Resources
- ...
Using Python in a Docker Container
by danaukes
Introduction
This tutorial makes it possible to spin up a container with everything you need ...
PiHole Setup
by danaukes
docker compose
```yaml version: "3"
More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
services: pihole: ...
Using Github with two accounts
by danaukes
Instructions
-
Create a new, separate key for each github account
follows ...
Bash Basics
by danaukes
Arguments
short arguments usually have a single dash followed by a single character. An ...