parent
6fb929d4a9
commit
0532f592fc
@ -0,0 +1,24 @@
|
|||||||
|
FROM alpine:latest
|
||||||
|
|
||||||
|
RUN apk add --no-cache curl git yaml zip \
|
||||||
|
php7-fpm php7-json php7-zlib php7-simplexml php7-xml php7-pdo php7-phar \
|
||||||
|
php7-openssl php7-gd php7-iconv php7-mcrypt php7-session php7-zip \
|
||||||
|
php7-curl php7-opcache php7-ctype php7-apcu \
|
||||||
|
php7-intl php7-bcmath php7-dom php7-mbstring php7-xmlreader && \
|
||||||
|
apk add --no-cache --update musl && \
|
||||||
|
rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
|
RUN sed -i 's/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/' /etc/php7/php.ini && \
|
||||||
|
sed -i 's/expose_php = On/expose_php = Off/' /etc/php7/php.ini
|
||||||
|
|
||||||
|
COPY php-fpm.conf /etc/php7/php-fpm.d/zz-docker.conf
|
||||||
|
|
||||||
|
COPY grav /app/
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
RUN php7 bin/gpm install admin form login email
|
||||||
|
RUN php7 bin/grav install
|
||||||
|
|
||||||
|
EXPOSE 9000
|
||||||
|
|
||||||
|
CMD ["php-fpm7", "--allow-to-run-as-root"]
|
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 40b475ecb988d358042ae0d33576fbce4ccda381
|
@ -0,0 +1,11 @@
|
|||||||
|
[global]
|
||||||
|
daemonize = no
|
||||||
|
error_log = /proc/self/fd/2
|
||||||
|
|
||||||
|
[www]
|
||||||
|
user = root
|
||||||
|
group = root
|
||||||
|
listen = 9000
|
||||||
|
clear_env = no
|
||||||
|
catch_workers_output = yes
|
||||||
|
access.log = /proc/self/fd/2
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,48 @@
|
|||||||
|
@import '~@angular/material/theming';
|
||||||
|
|
||||||
|
@include mat-core();
|
||||||
|
|
||||||
|
$quotes-theme-foreground: (
|
||||||
|
base: white,
|
||||||
|
divider: rgba(#454d5d, 0.2),
|
||||||
|
dividers: rgba(#454d5d, 0.2),
|
||||||
|
disabled: $light-disabled-text,
|
||||||
|
disabled-button: rgba(white, 0.3),
|
||||||
|
disabled-text: $light-disabled-text,
|
||||||
|
hint-text: $light-disabled-text,
|
||||||
|
secondary-text: $light-secondary-text,
|
||||||
|
icon: white,
|
||||||
|
icons: white,
|
||||||
|
text: white,
|
||||||
|
slider-min: white,
|
||||||
|
slider-off: rgba(white, 0.3),
|
||||||
|
slider-off-active: rgba(white, 0.3),
|
||||||
|
);
|
||||||
|
|
||||||
|
$quotes-theme-background: (
|
||||||
|
status-bar: black,
|
||||||
|
app-bar: #303030,
|
||||||
|
background: #222,
|
||||||
|
hover: rgba(white, 0.04),
|
||||||
|
card: #222,
|
||||||
|
dialog: lighten(#222, 1%),
|
||||||
|
disabled-button: rgba(white, 0.12),
|
||||||
|
raised-button: map-get($mat-grey, 800),
|
||||||
|
focused-button: $light-focused,
|
||||||
|
selected-button: map_get($mat-grey, 900),
|
||||||
|
selected-disabled-button: map_get($mat-grey, 800),
|
||||||
|
disabled-button-toggle: black,
|
||||||
|
unselected-chip: map_get($mat-grey, 700),
|
||||||
|
disabled-list-option: black,
|
||||||
|
);
|
||||||
|
|
||||||
|
$quotes-theme: (
|
||||||
|
primary: mat-palette($mat-blue),
|
||||||
|
accent: mat-palette($mat-pink),
|
||||||
|
warn: mat-palette($mat-red),
|
||||||
|
is-dark: true,
|
||||||
|
foreground: $quotes-theme-foreground,
|
||||||
|
background: $quotes-theme-background,
|
||||||
|
);
|
||||||
|
|
||||||
|
@include angular-material-theme($quotes-theme);
|
Loading…
Reference in new issue