Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
FIX: custom supervisor programs not loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoguido committed Apr 21, 2020
1 parent b3d137a commit 7819f1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/workspace/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ RUN if [ $(ls -1 /etc/cron.d/*.job 2>/dev/null | wc -l) != 0 ]; then \
############################
COPY conf/supervisord.conf /etc/supervisor/supervisord.conf
COPY supervisor-programs/* /etc/supervisor/conf.d/
RUN if [ $(ls -1 /etc/supervisor/conf.d/*.conf.d 2>/dev/null | wc -l) != 0 ]; then \
RUN if [ $(ls -1 /etc/supervisor/conf.d/*.conf 2>/dev/null | wc -l) != 0 ]; then \
for SUPERVISOR_PROGRAM in /etc/supervisor/conf.d/*.conf ; \
do \
echo "" >> /etc/supervisor/supervisord.conf ; \
Expand Down

0 comments on commit 7819f1f

Please sign in to comment.