|
|
@@ -144,6 +144,9 @@ gogs: # git server with wiki
|
|
|
ports: 3022:22
|
|
|
env:
|
|
|
VIRTUAL_PORT: 3000
|
|
|
+ healthcheck:
|
|
|
+ test: curl -I --silent http://localhost:3000 | grep "404 Not Found"
|
|
|
+ interval: 10 # seconds
|
|
|
|
|
|
graphite:
|
|
|
host: himbeere
|
|
|
@@ -179,27 +182,34 @@ matrix: # interface with RGB LED-Matrix
|
|
|
- /opt/jupyter/config_ipy_root:/root/.ipython
|
|
|
commands:
|
|
|
# some rotating square
|
|
|
- demo00: examples-api-use/demo -c 4 -L --led-show-refresh -D0
|
|
|
+ demo00: examples-api-use/demo -c 4 --led-show-refresh -D0
|
|
|
# forward scrolling an image
|
|
|
- demo01: examples-api-use/demo -c 4 -L --led-show-refresh -D1 examples-api-use/runtext.ppm
|
|
|
+ demo01: examples-api-use/demo -c 4 --led-show-refresh -D1 examples-api-use/runtext.ppm
|
|
|
# test image
|
|
|
- demo03: examples-api-use/demo -c 4 -L -D3
|
|
|
+ demo03: examples-api-use/demo -c 4 -D3
|
|
|
# Abelian sandpile model (-m <time-step-ms>)
|
|
|
- demo06: examples-api-use/demo -c 4 -L -D6
|
|
|
+ demo06: examples-api-use/demo -c 4 -D6
|
|
|
# Conway's game of life (-m <time-step-ms>)
|
|
|
- demo07: /bin/bash -c "while true; do examples-api-use/demo -c 4 -L -b 5 -D7 -t 15; done"
|
|
|
+ demo07: /bin/bash -c "while true; do examples-api-use/demo -c 4 -b 20 -D7 -t 15; done"
|
|
|
# Langton's ant (-m <time-step-ms>)
|
|
|
- demo08: examples-api-use/demo -c 4 -L -m 1 --led-show-refresh -D8
|
|
|
+ demo08: examples-api-use/demo -c 4 -m 1 --led-show-refresh -D8
|
|
|
# Volume bars
|
|
|
- demo09: examples-api-use/demo -c 4 -L -D9
|
|
|
+ demo09: examples-api-use/demo -c 4 -D9
|
|
|
# Evolution of color
|
|
|
- demo10: examples-api-use/demo -c 4 -L -D10
|
|
|
+ demo10: examples-api-use/demo -c 4 -D10
|
|
|
# Brightness pulse generator
|
|
|
- demo11: examples-api-use/demo -c 4 -L --led-pwm-bits=11 -D11
|
|
|
+ demo11: examples-api-use/demo -c 4 --led-pwm-bits=11 -D11
|
|
|
# python sample: rotatatin block
|
|
|
- pydemo1: bindings/python/samples/rotating-block-generator.py -c 4 -L --led-show-refresh
|
|
|
+ pydemo1: bindings/python/samples/rotating-block-generator.py -c 4 --led-show-refresh
|
|
|
# python sample: like demo01
|
|
|
- pydemo2: bindings/python/samples/image-scroller.py -c 4 -L --led-show-refresh -i examples-api-use/runtext.ppm
|
|
|
+ pydemo2: bindings/python/samples/image-scroller.py -c 4 --led-show-refresh -i examples-api-use/runtext.ppm
|
|
|
# python sample: rotatatin block
|
|
|
- pydemo3: bindings/python/samples/simple-square.py -c 4 -L --led-show-refresh
|
|
|
+ pydemo3: bindings/python/samples/simple-square.py -c 4 --led-show-refresh
|
|
|
+
|
|
|
+vaping:
|
|
|
+ host: himbeere
|
|
|
+ docker:
|
|
|
+ build: vaping
|
|
|
+ ports: 6080:7021
|
|
|
+
|
|
|
|