bitbake -vDDD your-recipe
bitbake -s
| #!/bin/bash | |
| while true; do echo -e "HTTP/1.1 200 OK\n\n$($1)" | nc -l -k -p 8080 -q 1; done |
| # -*- coding: utf-8 -*- | |
| from nsub import log_my, savetofile | |
| from common import * | |
| import requests | |
| import re | |
| try: | |
| import urllib.request | |
| except: | |
| pass |
| #!/bin/bash | |
| curl -X POST --unix-socket /var/run/docker.sock -H "Content-Type: application/json" "http:/v1.41/containers/create?name=pmm-temp" -d '{ | |
| "Image": "meisnate12/plex-meta-manager", | |
| "Cmd": ["--overlays", "--run", "-ig", "--ignore-schedules", "--no-missing"], | |
| "HostConfig": { | |
| "Binds": ["/root/docker/etc/plexmetamanager:/config"], | |
| "AutoRemove": true | |
| } | |
| }' |
| #/etc/docker/daemon.json <- where to save a file, remove that line after that | |
| { | |
| "hosts": ["tcp://0.0.0.0:2375", "unix:///var/run/docker.sock"] | |
| } |