Jan Dittberner
5b73173912
This commit provides docker images and scripts to support multiple Debian and PHP releases via containers.
8 lines
230 B
Docker
8 lines
230 B
Docker
FROM gnuviech/stretch_php7-base:latest
|
|
LABEL maintainer="jan@dittberner.info"
|
|
|
|
COPY start-fpm.sh /usr/local/sbin
|
|
COPY fpm-pool.conf.tmpl /usr/local/etc
|
|
|
|
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
|
|
CMD ["/usr/local/sbin/start-fpm.sh"]
|