Open steenbras opened 4 years ago
A couple of things with the php image that I had to fix:
Firstly the directory for the tail didn't exist, so I added a mkdir -p to the ./php/phd
tail
mkdir -p
./php/phd
d=/var/tmp/phd/log f=daemons.log /src/phabricator/bin/phd start mkdir -p $d touch $d/$f exec tail -F $d/$f
Secondly, phab daemons weren't started correctly. Logs showed a problem with the ps process:
ps
COMMAND ps -o pid,command -a -x -w -w -w STDOUT (empty) STDERR ps: unrecognized option: x BusyBox v1.28.4 (2018-12-31 18:05:13 UTC) multi-call binary.
Simple fix, just added the procps to the ./php/Dockerfile :
./php/Dockerfile
git \ ... procps
A couple of things with the php image that I had to fix:
Firstly the directory for the
tail
didn't exist, so I added amkdir -p
to the./php/phd
Secondly, phab daemons weren't started correctly. Logs showed a problem with the
ps
process:Simple fix, just added the procps to the
./php/Dockerfile
: