mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-06 08:11:54 +00:00
10 lines
167 B
Bash
Executable File
10 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
|
|
: ${BOOTSTRAP_DIR:=/bootstrap}
|
|
|
|
if [ -d "$BOOTSTRAP_DIR" ]; then
|
|
run-parts $BOOTSTRAP_DIR
|
|
fi
|
|
|
|
/var/www/html/build/env/bin/desktop runserver 0.0.0.0:8888
|