-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #814 from Lan2Play/dev
Dependency updates + seating plan copy function + revoke participants + fix no png logo
- Loading branch information
Showing
59 changed files
with
3,740 additions
and
4,367 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
# FROM th0rn0/php-nginx-base:latest | ||
FROM lan2play/docker-php-nginx-base:latest | ||
LABEL org.opencontainers.image.authors="Thornton Phillis ([email protected]), Alexader Volz ([email protected])" | ||
|
||
# ENV - App Defaults | ||
|
||
ENV UUID 82 | ||
ENV GUID 82 | ||
ENV ENABLE_HTTPS false | ||
ENV LOG_FILES false | ||
ENV ANALYTICS_PROVIDER GoogleAnalytics | ||
ENV DB_MIGRATE false | ||
ENV TIMEZONE UTC | ||
ENV UUID=82 | ||
ENV GUID=82 | ||
ENV ENABLE_HTTPS=false | ||
ENV LOG_FILES=false | ||
ENV ANALYTICS_PROVIDER=GoogleAnalytics | ||
ENV DB_MIGRATE=false | ||
ENV TIMEZONE=UTC | ||
|
||
#versioning | ||
ARG BUILDNUMBER | ||
|
@@ -28,8 +27,8 @@ ENV SOURCE_REF=$SOURCE_REF | |
COPY resources/docker/root / | ||
WORKDIR $NGINX_DOCUMENT_ROOT | ||
COPY --chown=${UUID}:${GUID} src/ $NGINX_DOCUMENT_ROOT | ||
RUN find $NGINX_DOCUMENT_ROOT -type d ! -perm 0775 -print0 | xargs -0 -r chmod 775 | ||
RUN find $NGINX_DOCUMENT_ROOT -type f ! -perm 0664 -print0 | xargs -0 -r chmod 664 | ||
RUN find $NGINX_DOCUMENT_ROOT -type d ! -perm 0775 -exec chmod 775 {} \; | ||
RUN find $NGINX_DOCUMENT_ROOT -type f ! -perm 0664 -exec chmod 664 {} \; | ||
RUN chgrp -R ${GUID} $NGINX_DOCUMENT_ROOT/storage $NGINX_DOCUMENT_ROOT/bootstrap/cache | ||
RUN chmod -R ug+rwx $NGINX_DOCUMENT_ROOT/storage $NGINX_DOCUMENT_ROOT/bootstrap/cache | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.