File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ services:
121121 - BLACKFIRE_CLIENT_ID=${BLACKFIRE_CLIENT_ID}
122122 - BLACKFIRE_CLIENT_TOKEN=${BLACKFIRE_CLIENT_TOKEN}
123123 - INSTALL_POWERLINE=${WORKSPACE_INSTALL_POWERLINE}
124+ - INSTALL_SUPERVISOR=${WORKSPACE_INSTALL_SUPERVISOR}
124125 - INSTALL_FFMPEG=${WORKSPACE_INSTALL_FFMPEG}
125126 - INSTALL_GNU_PARALLEL=${WORKSPACE_INSTALL_GNU_PARALLEL}
126127 - http_proxy
Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ WORKSPACE_INSTALL_MC=false
124124WORKSPACE_INSTALL_SYMFONY=false
125125WORKSPACE_INSTALL_PYTHON=false
126126WORKSPACE_INSTALL_POWERLINE=false
127+ WORKSPACE_INSTALL_SUPERVISOR=false
127128WORKSPACE_INSTALL_IMAGE_OPTIMIZERS=false
128129WORKSPACE_INSTALL_IMAGEMAGICK=false
129130WORKSPACE_INSTALL_TERRAFORM=false
Original file line number Diff line number Diff line change @@ -957,6 +957,18 @@ RUN if [ ${INSTALL_POWERLINE} = true ]; then \
957957 ;fi \
958958;fi
959959
960+ # ##########################################################################
961+ # SUPERVISOR:
962+ # ##########################################################################
963+ ARG INSTALL_SUPERVISOR=false
964+
965+ RUN if [ ${INSTALL_SUPERVISOR} = true ]; then \
966+ if [ ${INSTALL_PYTHON} = true ]; then \
967+ python -m pip install --upgrade supervisor && \
968+ echo_supervisord_conf > /etc/supervisord.conf \
969+ ;fi \
970+ ;fi
971+
960972USER laradock
961973
962974# ##########################################################################
You can’t perform that action at this time.
0 commit comments