This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ docker pull gitea.mydomain.com/tom/caddy:latest | |
| Error response from daemon: Head "https://gitea.mydomain.com/v2/tom/caddy/manifests/latest": no basic auth credentials | |
| Gitea Logs (Trace): | |
| 2026/04/19 21:39:48 modules/process/manager.go:185:(*Manager).Add() [T] Start 69e583e4: HTTP: GET /v2/ (request) | |
| 2026/04/19 21:39:48 HTTPRequest [T] router: started GET /v2/ for 100.65.64.45:0 | |
| 2026/04/19 21:39:48 HTTPRequest [I] router: completed GET /v2/ for 100.65.64.45:0, 401 Unauthorized in 2.7ms @ container/container.go:134(container.ReqContainerAccess) | |
| 2026/04/19 21:39:48 modules/process/manager.go:233:(*Manager).remove() [T] Done 69e583e4: HTTP: GET /v2/ | |
| 2026/04/19 21:39:48 modules/process/manager.go:185:(*Manager).Add() [T] Start 69e583e4-2: HTTP: GET /v2/token?scope=repository%3Atom%2Fcaddy%3Apull&service=container_registry (request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"lastUpload":"2018-12-07T15:02:02.048Z","extensionVersion":"v3.1.2"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if (( $# < 2 )); then | |
| echo "Usage: $0 chroot_dir program [program ...]" | |
| exit 1 | |
| else | |
| CHROOT="$1"; shift | |
| fi | |
| function same_file() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [ "$1" == '' ]; then echo "Please provide a hostname to connect."; exit 1; fi | |
| if [ $(whoami) != 'root' ]; then echo "Need to run with sudo"; exit 1; fi | |
| host=$1 | |
| # get secrets | |
| remote_secret=$(ssh root@$host "cat /var/lib/crashplan/.ui_info | cut -d',' -f2") | |
| local_secret=$(cat /Library/Application\ Support/CrashPlan/.ui_info | cut -d',' -f2) |