lamps/Dockerfile

52 lines
1.4 KiB
Docker
Raw Normal View History

2016-05-26 11:45:30 +00:00
# NAME leenooks/lamps
# VERSION php54
2016-05-26 11:45:30 +00:00
2016-08-11 01:22:20 +00:00
FROM registry.leenooks.net/leenooks/base:7
2016-05-26 11:45:30 +00:00
RUN yum -y install epel-release && yum clean all
RUN yum -y install tsmpipe && yum clean all
2016-05-26 11:45:30 +00:00
# EPEL & Leenooks packages
RUN yum -y install \
httpd \
mariadb-server \
php \
php-gd \
php-ldap \
php-mbstring \
php-mysql \
php-pdo \
php-xml \
2016-08-11 01:22:20 +00:00
php-composer-installers.noarch \
2016-05-26 11:45:30 +00:00
m4 \
opendkim \
sendmail \
sendmail-cf \
awstats \
ln-http \
ln-awstats \
ln-mail-server \
2016-08-11 01:22:20 +00:00
openssh-server \
git \
2016-05-26 11:45:30 +00:00
&& yum clean all
COPY .my.cnf /root/
COPY 10-default.conf /etc/httpd/conf.d/
RUN ln -f /etc/.ln/httpd/conf.d/awstats.conf /etc/httpd/conf.d/awstats.conf && ln -f /etc/.ln/opendkim.conf /etc/opendkim.conf
RUN useradd -c "Hosting Admin User" -m lamp -G apache
VOLUME [ "/etc/ssh" ]
2016-05-26 11:45:30 +00:00
EXPOSE 80 443
2017-04-19 11:55:33 +00:00
LABEL cron.hourly root:/usr/sbin/awstats.sh
LABEL cron.daily root:/usr/bin/tdp.mysql.sh -s information_schema:performance_schema
2016-05-26 11:45:30 +00:00
# Starting
2016-08-11 01:22:20 +00:00
COPY init /sbin/
2016-05-26 11:45:30 +00:00
ENTRYPOINT [ "/sbin/init" ]
CMD [ "start" ]
RUN useradd -rc "Composer" -m composer -s /sbin/nologin && su composer -s /bin/bash -lc "composer global require laravel/installer && composer require --dev --no-update xethron/migrations-generator:dev-l5 && composer require --dev --no-update way/generators:dev-feature/laravel-five-stable && composer config repositories.repo-name git git@github.com:jamisonvalenta/Laravel-4-Generators.git"