14 lines
287 B
Bash
14 lines
287 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
#
|
||
|
# Docker Homebridge Custom Startup Script - oznu/homebridge
|
||
|
#
|
||
|
# This script can be used to customise the environment and will be executed as
|
||
|
# the root user each time the container starts.
|
||
|
#
|
||
|
# Example installing packages:
|
||
|
#
|
||
|
# apt-get update
|
||
|
# apt-get install -y python3
|
||
|
#
|