lamps/Dockerfile

54 lines
1.8 KiB
Docker
Raw Normal View History

2016-05-26 11:45:30 +00:00
# NAME leenooks/lamps
# VERSION php70
2016-05-26 11:45:30 +00:00
2017-06-02 12:49:46 +00:00
FROM registry.leenooks.net/leenooks/base:7.TE
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
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 \
2017-05-25 12:16:56 +00:00
php-opcache \
2016-05-26 11:45:30 +00:00
m4 \
opendkim \
sendmail \
sendmail-cf \
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/
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
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"
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
#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;