This file contains 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
services: | |
: | |
container_name: | |
image: | |
environment: | |
KEY: "Value" | |
volumes: | |
- "/etc/localtime:/etc/localtime:ro" | |
- "./data:/data" | |
ports: |
This file contains 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
ets Jun 8 2016 00:22:57 | |
rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT) | |
configsip: 0, SPIWP:0xee | |
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00 | |
mode:DIO, clock div:2 | |
load:0x3fff0030,len:4 | |
load:0x3fff0034,len:6920 | |
load:0x40078000,len:13100 | |
load:0x40080400,len:3884 |
This file contains 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
[0;32mI (21012) esp_netif_handlers: sta ip: 192.168.0.83, mask: 255.255.255.0, gw: 192.168.0.1[0m | |
[0;32mI (21012) Log: Enabling remote logging[0m | |
[0;32mI (21012) BLE2MQTT: Connected to the network, connecting to MQTT[0m | |
[0;32mI (21022) MQTT: Connecting MQTT client[0m | |
[0;32mI (21022) system_api: Base MAC address is not set, read default base MAC address from BLK0 of EFUSE[0m | |
[0;32mI (21082) MQTT: MQTT client connected[0m | |
[0;32mI (21082) BLE2MQTT: Connected to MQTT, scanning for BLE devices[0m | |
[0;32mI (21352) BLE2MQTT: Discovered BLE device: 4f:a1:c3:6d:6a:f3 (RSSI: -70), not connecting[0m | |
[0;32mI (21672) BLE2MQTT: Discovered BLE device: de:66:92:69:03:8c (RSSI: -87), connecting[0m | |
lld_pdu_get_tx_flush_nb HCI packet count mismatch (0, 1) |
This file has been truncated, but you can view the full file.
This file contains 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
ets Jun 8 2016 00:22:57 | |
rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT) | |
configsip: 0, SPIWP:0xee | |
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00 | |
mode:DIO, clock div:2 | |
load:0x3fff0030,len:4 | |
load:0x3fff0034,len:6920 | |
load:0x40078000,len:13100 |
This file contains 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 | |
# This script is based on https://unix.stackexchange.com/revisions/480191/9. | |
# Recommended SIZE setting for different drives: | |
# (SATA) SSD: 1024 | |
# (ANY) HDD: 256 | |
# (High End NVME) SSD: 4096 | |
# (Low-Mid End NVME) SSD: 1024 |
This file contains 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
#!/usr/bin/env bash | |
# Add "source /path/to/dockr-completion.bash" to your .bashrc file. | |
_dockr_completions() | |
{ | |
COMPREPLY=($(docker ps --format "{{.Names}}" --filter "name=${COMP_WORDS[1]}")) | |
} | |
complete -F _dockr_completions dockr |
This file contains 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
#!/usr/bin/env bash | |
set -e | |
hc_guid=<insert healthchecks.io guid> | |
sudo apt update | |
if [[ $1 == "upgrade" ]] | |
then |
This file contains 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
#!/usr/bin/env bash | |
base_command="docker exec -it" | |
shells=(/bin/bash /bin/ash /bin/sh) | |
if [[ $1 == "" ]] | |
then | |
printf "Usage: dockr [container name]\n" | |
exit 1 | |
fi |