2016-05-26 11:45:30 +00:00
|
|
|
# NAME leenooks/lamps
|
2016-08-11 02:18:46 +00:00
|
|
|
# VERSION php70
|
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
|
|
|
|
|
2016-08-23 01:24:03 +00:00
|
|
|
RUN yum -y install tsmpipe && yum clean all
|
|
|
|
|
2016-08-11 02:18:46 +00:00
|
|
|
RUN yum -y install http://rpms.famillecollet.com/enterprise/remi-release-7.rpm && yum clean all && rm -rf /var/tmp/*
|
|
|
|
|
2016-05-26 11:45:30 +00:00
|
|
|
# EPEL & Leenooks packages
|
2016-08-11 02:18:46 +00:00
|
|
|
RUN yum -y install --enabler remi-php70 \
|
2016-05-26 11:45:30 +00:00
|
|
|
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 \
|
2016-08-24 13:54:34 +00:00
|
|
|
cyrus-sasl-plain \
|
2016-05-26 11:45:30 +00:00
|
|
|
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/
|
2017-05-08 03:32:18 +00:00
|
|
|
COPY 1?-default.conf /etc/httpd/conf.d/
|
|
|
|
COPY sshd /etc/sysconfig/sshd
|
|
|
|
COPY sshd_config /etc/ssh/
|
2016-05-26 11:45:30 +00:00
|
|
|
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
|
|
|
|
|
2017-05-08 03:32:18 +00:00
|
|
|
RUN useradd -c "Hosting Admin User" -G apache -d /etc/leenooks/user -M lamp
|
2017-04-21 04:02:19 +00:00
|
|
|
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"
|
2016-08-11 01:52:40 +00:00
|
|
|
|
2017-05-08 03:32:18 +00:00
|
|
|
EXPOSE 22 80
|
|
|
|
COPY init /sbin/
|
|
|
|
|
|
|
|
# Starting
|
|
|
|
ENTRYPOINT [ "/sbin/init" ]
|
2016-05-26 11:45:30 +00:00
|
|
|
|
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
|
|
|
|
|
2017-05-08 03:32:18 +00:00
|
|
|
#VOLUME [ "/etc/leenooks","/var/lib/mysql","/var/www/html" ]
|
|
|
|
VOLUME [ "/etc/leenooks" ]
|
|
|
|
RUN rmdir /var/lib/mysql; ln -sf /etc/leenooks/database /var/lib/mysql; mv /var/www/html /var/www/html.old; ln -sf /etc/leenooks/html /var/www/html; ln -sf /etc/leenooks/tsm/dsm.sys /opt/tivoli/tsm/client/api/bin64/dsm.sys; ln -sf /etc/leenooks/tsm/dsm.opt /opt/tivoli/tsm/client/api/bin64/dsm.opt;
|