This repository has been archived on 2021-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
eltelive/tmpl/Dockerfile
2021-03-21 17:43:30 +01:00

18 lines
401 B
Docker

FROM $IMAGENAME
WORKDIR /root
COPY . /root/
# COPY passwd files here
# COPY SSL keys and certificates here
RUN chmod +x install.sh
RUN ./install.sh
EXPOSE 80/tcp
EXPOSE 443/tcp
EXPOSE 1935/tcp
VOLUME /var/www
VOLUME /var/log
CMD ./www-conf.sh && /usr/sbin/cron && /usr/bin/spawn-fcgi -u $FCGIUSERNAME -g www-data -M 660 -s /var/run/fcgiwrap.socket /usr/sbin/fcgiwrap && /usr/sbin/nginx && /bin/sh