Posts with "linux" Tag
Add a User in a Docker Container with a custom password
by Dan Aukes
password="1YelloDog@"
pass=$(perl -e 'print crypt($ARGV[0], "password")' $password)
echo "$pass"
External Resources
- ...
Using Python in a Docker Container
by Dan Aukes
Introduction
This tutorial makes it possible to spin up a container with everything you need ...
PiHole Setup
by Dan Aukes
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 Dan Aukes
Instructions
-
Create a new, separate key for each github account
follows ...
Bash Basics
by Dan Aukes
Arguments
short arguments usually have a single dash followed by a single character. An ...