Compare commits

..

4 commits

Author SHA1 Message Date
Frank Agerholm
00bfdb7b74 Apache port changed to 8080 2019-01-17 08:52:54 +01:00
Frank Agerholm
71fdbc6a5a Dockerfile bugfix 2019-01-17 06:48:48 +01:00
Frank Agerholm
e21bbe6b51 Dockerfile ENV fix 2019-01-17 06:43:35 +01:00
Frank Agerholm
ce70c9b4bf Dockerfile added 2019-01-17 06:41:48 +01:00
2 changed files with 15 additions and 7 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM php:7.2-apache
RUN sed -i "s/80/8080/g" /etc/apache2/sites-available/000-default.conf /etc/apache2/ports.conf
COPY . /var/www/html/
ENV REDIS_OPTIONS_SCHEMA "tcp"
ENV REDIS_OPTIONS_HOST "localhost"
ENV REDIS_OPTIONS_PORT "6379"
ENV REDIS_OPTIONS_PASSWORD "changeme"
ENV RETWIS_TITLE "Moin"
EXPOSE 8080

View file

@ -1,7 +0,0 @@
{
"require": {
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^1.0"
}
}