With the following Dockerfile:
FROM debian:jessie
RUN cd /opt && mkdir nodebb
WORKDIR /opt/nodebb
RUN date > container_created.txt
CMD date > container_lastrun.txt ; /bin/bash
I built an image:
#!/bin/bash | |
# | |
# Script for installing x11vnc on Steam Deck. | |
# | |
# Install: | |
# | |
# sh -c "$(curl -fsSL https://gist.githubusercontent.com/x43x61x69/9a5a231a25426e8a2cc0f7c24cfdaed9/raw/vnc_install.sh?$RANDOM)" | |
# | |
# This will modify root filesystem so it will probably get | |
# overwrite on system updates but is totally ok executing |
#!/bin/sh | |
git diff-index -z --cached HEAD --name-only --diff-filter=ACMRTUXB | | |
xargs -0 -t -L1 /usr/local/bin/jsonlint -c; | |
if [ "$?" != "0" ]; then | |
echo "\nOne or more JSON file didn't pass jsonlint'ing."; | |
echo "Fix them before committing. If it is not possible to fix them all commit with the option --no-verify."; | |
exit 1; |
With the following Dockerfile:
FROM debian:jessie
RUN cd /opt && mkdir nodebb
WORKDIR /opt/nodebb
RUN date > container_created.txt
CMD date > container_lastrun.txt ; /bin/bash
I built an image:
command: "" | |
refreshFrequency: 160000 | |
style: """ | |
z-index:-1 | |
color: #ccf | |
min-width: 100% | |
min-height: 100% | |
font-family: Helvetica Neue |
adb logcat CordovaActivity:V CordovaWebView:V CordovaWebViewClient:V IceCreamCordovaWebViewClient:V CordovaLog:V *:S |
_ = require('lodash') | |
request = require('request') | |
exec = require('child_process').exec | |
host = "your graphite host" | |
port = 2003 | |
metric = "full.metric.name" |
<style type="text/css"> | |
#dashboard_list ul { | |
margin:20px, 40px, 40px, 10px; | |
overflow:hidden; | |
} | |
#dashboard_list li { | |
line-height:1.5em; | |
float:left; | |
display:inline; | |
} |
/*Now the CSS*/ | |
* {margin: 0; padding: 0;} | |
.tree ul { | |
padding-top: 20px; position: relative; | |
transition: all 0.5s; | |
-webkit-transition: all 0.5s; | |
-moz-transition: all 0.5s; | |
} |