Working: Auth, DB, view ticket

Signed-off-by: Luke Tainton <luke@tainton.uk>
This commit is contained in:
2020-08-04 14:19:10 +01:00
parent 184510e097
commit f64b585230
18 changed files with 1367 additions and 1 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM composer as build
COPY app /srv
RUN composer --working-dir=/srv install
FROM php:apache
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
RUN docker-php-ext-install pdo_mysql && a2enmod rewrite remoteip
COPY vhost.conf /etc/apache2/sites-enabled/000-default.conf
COPY --from=build /srv /srv