Hello! I have roadrunner in my docker image, this is part of my Dockerfile
# Download RoadRunner
ENV RR_VERSION 1.4.7
RUN mkdir /tmp/rr \
&& cd /tmp/rr \
&& echo "{\"require\":{\"spiral/roadrunner\":\"${RR_VERSION}\"}}" >> composer.json \
&& composer install \
&& vendor/bin/rr get-binary -l /usr/local/bin \
&& rm -rf /tmp/rr
# Copy RoadRunner config
COPY .docker/etc/roadrunner /etc/roadrunner
EXPOSE 80
ENTRYPOINT ["/usr/local/bin/rr", "serve", "-d", "-c", "/etc/roadrunner/.rr.yaml"]
So, how can I implement your feature here? I did not understand how can I build it...
Hello! I have roadrunner in my docker image, this is part of my Dockerfile
So, how can I implement your feature here? I did not understand how can I build it...