Posts with "ubuntu" Tag
Nextcloud in Docker
by Dan Aukes
docker-compose
```yaml version: '2'
volumes: nextcloud: db:
services: db: image: mariadb:10.5 ...
Start docker automatically as a ```systemd``` service
by Dan Aukes
Docker Compose Example
copy and paste the folowing text into a new file called ~/script.sh
```bash
!/bin/bash
SERVICENAME=$(basename ...
Using Github with two accounts
by Dan Aukes
Instructions
-
Create a new, separate key for each github account
follows ...
Installing GrapheneOS on a Pixel 4a
by Dan Aukes
Instructions derived from https://grapheneos.org/install/cli
Download Developer Tools
```bash sudo apt install -y android-sdk-platform-tools-common sudo apt install -y signify-openbsd echo ...
Using the ```find``` command in bash
by Dan Aukes
Using the find command in bash
Find files with find
```bash find [-flags] path -expression find ~/ ...