Compare commits
24 Commits
3b17ab1549
...
923b4e72ca
Author | SHA1 | Date | |
---|---|---|---|
|
923b4e72ca | ||
|
7652408e48 | ||
|
6ab3e69d83 | ||
|
20d1800ca1 | ||
|
c03dd2aaa0 | ||
|
d2518f710c | ||
|
03f83bc304 | ||
|
972a4aeaf8 | ||
|
6cd2f36bbc | ||
|
7869fc6f50 | ||
|
88c1064ebd | ||
|
ab12261b81 | ||
|
ec8accdf4a | ||
|
8f38abdaa5 | ||
|
99dbe0d13d | ||
|
a20a865d55 | ||
|
34d0a7416c | ||
|
bc3a465c0f | ||
|
cd409b2002 | ||
|
b29603092e | ||
|
68c1281162 | ||
|
921575772f | ||
|
5bf33b84ee | ||
|
99791da0ec |
@ -1,190 +0,0 @@
|
|||||||
name: Create Docker Image
|
|
||||||
run-name: ${{ gitea.actor }} Building Docker Image 🐳
|
|
||||||
on: [push]
|
|
||||||
env:
|
|
||||||
VERSION: 8.3-fpm-pgsql
|
|
||||||
DOCKER_HOST: tcp://127.0.0.1:2375
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
arch:
|
|
||||||
- x86_64
|
|
||||||
- arm64
|
|
||||||
|
|
||||||
name: Build Docker Image
|
|
||||||
runs-on: docker-${{ matrix.arch }}
|
|
||||||
container:
|
|
||||||
image: docker:dind
|
|
||||||
privileged: true
|
|
||||||
env:
|
|
||||||
ARCH: ${{ matrix.arch }}
|
|
||||||
VERSIONARCH: ${{ env.VERSION }}-${{ env.ARCH }}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Environment Setup
|
|
||||||
run: |
|
|
||||||
# If we have a proxy use it
|
|
||||||
if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
|
|
||||||
# Some pre-reqs
|
|
||||||
apk add git curl nodejs
|
|
||||||
# Start docker
|
|
||||||
( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3
|
|
||||||
## Some debugging info
|
|
||||||
# docker info && docker version
|
|
||||||
# env|sort
|
|
||||||
|
|
||||||
- name: Registry FQDN Setup
|
|
||||||
id: registry
|
|
||||||
run: |
|
|
||||||
registry=${{ github.server_url }}
|
|
||||||
echo "registry=${registry##http*://}" >> "$GITHUB_OUTPUT"
|
|
||||||
|
|
||||||
- name: Container Registry Login
|
|
||||||
uses: docker/login-action@v2
|
|
||||||
with:
|
|
||||||
registry: ${{ steps.registry.outputs.registry }}
|
|
||||||
username: ${{ gitea.actor }}
|
|
||||||
password: ${{ secrets.PKG_WRITE_TOKEN }}
|
|
||||||
|
|
||||||
- name: Code Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Build and Push Docker Image
|
|
||||||
uses: docker/build-push-action@v5
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: docker/Dockerfile
|
|
||||||
push: true
|
|
||||||
tags: "${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSIONARCH }}"
|
|
||||||
|
|
||||||
manifest:
|
|
||||||
name: Final Docker Image Manifest
|
|
||||||
runs-on: docker-x86_64
|
|
||||||
container:
|
|
||||||
image: docker:dind
|
|
||||||
privileged: true
|
|
||||||
needs: [build]
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Environment Setup
|
|
||||||
run: |
|
|
||||||
# If we have a proxy use it
|
|
||||||
if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
|
|
||||||
# Some pre-reqs
|
|
||||||
apk add git curl nodejs
|
|
||||||
# Start docker
|
|
||||||
( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3
|
|
||||||
|
|
||||||
- name: Registry FQDN Setup
|
|
||||||
id: registry
|
|
||||||
run: |
|
|
||||||
registry=${{ github.server_url }}
|
|
||||||
echo "registry=${registry##http*://}" >> "$GITHUB_OUTPUT"
|
|
||||||
|
|
||||||
- name: Container Registry Login
|
|
||||||
uses: docker/login-action@v2
|
|
||||||
with:
|
|
||||||
registry: ${{ steps.registry.outputs.registry }}
|
|
||||||
username: ${{ gitea.actor }}
|
|
||||||
password: ${{ secrets.PKG_WRITE_TOKEN }}
|
|
||||||
|
|
||||||
- name: Build Docker Manifest
|
|
||||||
run: |
|
|
||||||
docker manifest create ${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }} \
|
|
||||||
${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}-x86_64 \
|
|
||||||
${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}-arm64
|
|
||||||
docker manifest push --purge ${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}
|
|
||||||
|
|
||||||
test:
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
arch:
|
|
||||||
- x86_64
|
|
||||||
# arm64
|
|
||||||
|
|
||||||
name: Build Docker Test Image
|
|
||||||
runs-on: docker-${{ matrix.arch }}
|
|
||||||
container:
|
|
||||||
image: docker:dind
|
|
||||||
privileged: true
|
|
||||||
env:
|
|
||||||
ARCH: ${{ matrix.arch }}
|
|
||||||
VERSIONARCH: ${{ env.VERSION }}-test-${{ env.ARCH }}
|
|
||||||
needs: [manifest]
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Environment Setup
|
|
||||||
run: |
|
|
||||||
# If we have a proxy use it
|
|
||||||
if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
|
|
||||||
# Some pre-reqs
|
|
||||||
apk add git curl nodejs
|
|
||||||
# Start docker
|
|
||||||
( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3
|
|
||||||
## Some debugging info
|
|
||||||
# docker info && docker version
|
|
||||||
# env|sort
|
|
||||||
|
|
||||||
- name: Registry FQDN Setup
|
|
||||||
id: registry
|
|
||||||
run: |
|
|
||||||
registry=${{ github.server_url }}
|
|
||||||
echo "registry=${registry##http*://}" >> "$GITHUB_OUTPUT"
|
|
||||||
|
|
||||||
- name: Container Registry Login
|
|
||||||
uses: docker/login-action@v2
|
|
||||||
with:
|
|
||||||
registry: ${{ steps.registry.outputs.registry }}
|
|
||||||
username: ${{ gitea.actor }}
|
|
||||||
password: ${{ secrets.PKG_WRITE_TOKEN }}
|
|
||||||
|
|
||||||
- name: Code Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Build and Push Docker Image
|
|
||||||
uses: docker/build-push-action@v5
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: docker/Dockerfile.phptest
|
|
||||||
push: true
|
|
||||||
tags: "${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSIONARCH }}"
|
|
||||||
|
|
||||||
manifest-test:
|
|
||||||
name: Final Docker Test Image Manifest
|
|
||||||
runs-on: docker-x86_64
|
|
||||||
container:
|
|
||||||
image: docker:dind
|
|
||||||
privileged: true
|
|
||||||
needs: [test]
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Environment Setup
|
|
||||||
run: |
|
|
||||||
# If we have a proxy use it
|
|
||||||
if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
|
|
||||||
# Some pre-reqs
|
|
||||||
apk add git curl nodejs
|
|
||||||
# Start docker
|
|
||||||
( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3
|
|
||||||
|
|
||||||
- name: Registry FQDN Setup
|
|
||||||
id: registry
|
|
||||||
run: |
|
|
||||||
registry=${{ github.server_url }}
|
|
||||||
echo "registry=${registry##http*://}" >> "$GITHUB_OUTPUT"
|
|
||||||
|
|
||||||
- name: Container Registry Login
|
|
||||||
uses: docker/login-action@v2
|
|
||||||
with:
|
|
||||||
registry: ${{ steps.registry.outputs.registry }}
|
|
||||||
username: ${{ gitea.actor }}
|
|
||||||
password: ${{ secrets.PKG_WRITE_TOKEN }}
|
|
||||||
|
|
||||||
- name: Build Docker Manifest
|
|
||||||
run: |
|
|
||||||
docker manifest create ${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}-test \
|
|
||||||
${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}-test-x86_64
|
|
||||||
#${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}-test-arm64
|
|
||||||
docker manifest push --purge ${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}-test
|
|
46
.gitlab-ci.yml
Normal file
46
.gitlab-ci.yml
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
image: docker:latest
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- build
|
||||||
|
- build-test
|
||||||
|
|
||||||
|
variables:
|
||||||
|
BRANCH: image
|
||||||
|
VERSION: 8.1-fpm-${BRANCH}
|
||||||
|
CACHETAG: build-${BRANCH}
|
||||||
|
DOCKER_HOST: tcp://docker:2375
|
||||||
|
|
||||||
|
services:
|
||||||
|
- docker:dind
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- docker info
|
||||||
|
- docker version
|
||||||
|
- echo "$CI_JOB_TOKEN" | docker login -u "$CI_REGISTRY_USER" "$CI_REGISTRY" --password-stdin
|
||||||
|
|
||||||
|
x86_64:build:
|
||||||
|
stage: build
|
||||||
|
script:
|
||||||
|
- if [ -f init ]; then chmod 500 init; fi
|
||||||
|
- ([ -z "$REFRESH" ] && docker pull ${CI_REGISTRY_IMAGE}:${CACHETAG}) || true
|
||||||
|
- docker build --cache-from ${CI_REGISTRY_IMAGE}:${CACHETAG} -t ${CI_REGISTRY_IMAGE}:${VERSION} -t ${CI_REGISTRY_IMAGE}:${CACHETAG} .
|
||||||
|
- docker push ${CI_REGISTRY_IMAGE}:${VERSION}
|
||||||
|
- docker push ${CI_REGISTRY_IMAGE}:${CACHETAG}
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
- x86_64
|
||||||
|
only:
|
||||||
|
- image
|
||||||
|
|
||||||
|
x86_64:build-test:
|
||||||
|
stage: build-test
|
||||||
|
script:
|
||||||
|
- if [ -f init ]; then chmod 500 init; fi
|
||||||
|
- ([ -z "$REFRESH" ] && docker pull ${CI_REGISTRY_IMAGE}:${CACHETAG}) || true
|
||||||
|
- docker build --file Dockerfile.phptest --cache-from ${CI_REGISTRY_IMAGE}:${CACHETAG} -t ${CI_REGISTRY_IMAGE}:${VERSION}-test .
|
||||||
|
- docker push ${CI_REGISTRY_IMAGE}:${VERSION}-test
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
- x86_64
|
||||||
|
only:
|
||||||
|
- image
|
56
Dockerfile
Normal file
56
Dockerfile
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
# NAME leenooks/php
|
||||||
|
# VERSION 8.1-fpm-image
|
||||||
|
|
||||||
|
FROM registry.leenooks.net/leenooks/php:8.1-fpm-latest
|
||||||
|
|
||||||
|
RUN mv /sbin/init /sbin/init.tmp \
|
||||||
|
&& apt-get update \
|
||||||
|
&& apt-get install -yqq wkhtmltopdf \
|
||||||
|
&& apt purge -yqq systemd-sysv dconf-service \
|
||||||
|
&& apt autoremove -yqq \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* /tmp/* \
|
||||||
|
&& mv /sbin/init.tmp /sbin/init
|
||||||
|
|
||||||
|
RUN cd /usr/local/bin && curl -OsL https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions && chmod +x install-php-extensions
|
||||||
|
|
||||||
|
RUN mv /sbin/init /sbin/init.tmp \
|
||||||
|
&& sed -Ei 's/^# deb-src /deb-src /' /etc/apt/sources.list \
|
||||||
|
&& cat /etc/apt/sources.list|grep ^deb | sed -E 's/^deb/deb-src/' >> /etc/apt/sources.list \
|
||||||
|
&& apt-get -y update \
|
||||||
|
&& apt-get -y install wget build-essential libtool git-core libwmf0.2-7 libreadline8 \
|
||||||
|
libpangocairo-1.0-0 libxt6 libjbig0 liblcms2-2 libtiff5 liblqr-1-0 libdjvulibre21 libfftw3-double3 libx265-192 \
|
||||||
|
libwebpmux3 libwebpdemux2 libopenexr25 libilmbase25 libopenjp2-7 \
|
||||||
|
&& apt-get -y build-dep imagemagick libmagickcore-dev libde265 libheif libfontconfig1 \
|
||||||
|
&& cd /usr/src/ \
|
||||||
|
&& git clone https://github.com/strukturag/libde265.git \
|
||||||
|
&& git clone https://github.com/strukturag/libheif.git \
|
||||||
|
&& cd libde265/ \
|
||||||
|
&& ./autogen.sh \
|
||||||
|
&& ./configure \
|
||||||
|
&& make \
|
||||||
|
&& make install \
|
||||||
|
&& cd /usr/src/libheif/ \
|
||||||
|
&& ./autogen.sh \
|
||||||
|
&& ./configure \
|
||||||
|
&& make \
|
||||||
|
&& make install \
|
||||||
|
&& mkdir /usr/src/ImageMagick \
|
||||||
|
&& git clone https://github.com/ImageMagick/ImageMagick.git ImageMagick-7.0.11 \
|
||||||
|
&& cd ImageMagick-7.0.11 \
|
||||||
|
&& ./configure --with-heic=yes --with-modules \
|
||||||
|
&& make install \
|
||||||
|
&& ldconfig \
|
||||||
|
&& apt-get install -y libbz2-dev libgmp-dev libpng-dev libjpeg-dev libfreetype6-dev --no-install-recommends \
|
||||||
|
&& docker-php-ext-install -j$(nproc) gmp exif \
|
||||||
|
&& install-php-extensions imagick \
|
||||||
|
&& apt-get purge -y build-essential libtool wget *-dev \
|
||||||
|
hicolor-icon-theme texlive-base texlive-binaries automake bsdmainutils doxygen \
|
||||||
|
fonts-lmodern ghostscript graphviz gsfonts icu-devtools jdupes groff-base chrpath dbus \
|
||||||
|
man-db python3 xsltproc \
|
||||||
|
tex-common mime-support poppler-data preview-latex-style libgdk-pixbuf2.0-0 libgl1-mesa-dri libpaper1 libpulse0 \
|
||||||
|
libqt5core5a libqt5gui5 libsensors-config libvdpau1 shared-mime-info libglib2.0-data libxml2-utils ttf-bitstream-vera libgvc6 \
|
||||||
|
imagemagick-6-common \
|
||||||
|
&& apt-get autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* /tmp/* \
|
||||||
|
&& rm -rf /usr/src/libde265 /usr/src/libheif /usr/src/ImageMagick \
|
||||||
|
&& mv /sbin/init.tmp /sbin/init
|
18
Dockerfile.phptest
Normal file
18
Dockerfile.phptest
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# NAME leenooks/php
|
||||||
|
# VERSION 8.1-fpm-image-test
|
||||||
|
|
||||||
|
FROM registry.leenooks.net/leenooks/php:8.1-fpm-image
|
||||||
|
|
||||||
|
RUN apt-get update && apt-get -y install wget build-essential \
|
||||||
|
&& pecl install xdebug \
|
||||||
|
&& docker-php-ext-enable xdebug \
|
||||||
|
&& apt-get -y autoremove \
|
||||||
|
&& apt-get clean \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||||
|
|
||||||
|
RUN mv /sbin/init /sbin/init.orig \
|
||||||
|
&& apt-get update && apt-get install -y npm \
|
||||||
|
&& apt-get -y autoremove \
|
||||||
|
&& apt-get clean \
|
||||||
|
&& mv /sbin/init.orig /sbin/init \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
@ -1,11 +0,0 @@
|
|||||||
# NAME docker/php
|
|
||||||
# VERSION 8.3-fpm-pgsql-image
|
|
||||||
|
|
||||||
FROM gitea.dege.au/docker/php:8.3-fpm-pgsql
|
|
||||||
|
|
||||||
# Images
|
|
||||||
RUN apk add --no-cache imagemagick libheif libde265 php83-pecl-imagick \
|
|
||||||
&& ln /usr/lib/php83/modules/imagick.so /usr/local/lib/php/extensions/no-debug-non-zts-20230831/ \
|
|
||||||
&& ln /etc/php83/conf.d/imagick.ini /usr/local/etc/php/conf.d/
|
|
||||||
RUN apk add --no-cache gmp-dev \
|
|
||||||
&& docker-php-ext-install -j$(nproc) gmp
|
|
@ -1,9 +0,0 @@
|
|||||||
# NAME docker/php
|
|
||||||
# VERSION 8.3-fpm-pgsql-test
|
|
||||||
|
|
||||||
FROM gitea.dege.au/docker/php:8.3-fpm-pgsql
|
|
||||||
|
|
||||||
# Add xdebug
|
|
||||||
RUN apk --no-cache add linux-headers \
|
|
||||||
&& pecl_install xdebug \
|
|
||||||
&& apk --no-cache del linux-headers
|
|
175
docker/init
175
docker/init
@ -1,175 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
role=${CONTAINER_ROLE:-app}
|
|
||||||
env=${APP_ENV:-production}
|
|
||||||
php=${PHP_DIR:-/var/www/html}
|
|
||||||
composer=${COMPOSER_HOME:-/var/cache/composer}
|
|
||||||
|
|
||||||
SITE_USER=${SITE_USER:-www-data}
|
|
||||||
NGINX_START=${NGINX_START:-TRUE}
|
|
||||||
MEMCACHED_START=${MEMCACHED_START:-FALSE}
|
|
||||||
|
|
||||||
# To run a local queue, running jobs from the queue "hostname"
|
|
||||||
LOCAL_QUEUE=${LOCAL_QUEUE:-FALSE}
|
|
||||||
# Optional additional queues to run for
|
|
||||||
#LOCAL_QUEUES=
|
|
||||||
|
|
||||||
function mp() {
|
|
||||||
set +e
|
|
||||||
mountpoint -q $1
|
|
||||||
local mp=$?
|
|
||||||
set -e
|
|
||||||
echo ${mp}
|
|
||||||
}
|
|
||||||
|
|
||||||
function nginx_start() {
|
|
||||||
# Start NGINX
|
|
||||||
if [ -x /usr/sbin/nginx -a "${NGINX_START}" == "TRUE" ]; then
|
|
||||||
echo "* Starting NGINX..."
|
|
||||||
/usr/sbin/nginx -g 'daemon on; master_process on;'
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Run any container setup
|
|
||||||
[ -x /sbin/init-container ] && /sbin/init-container
|
|
||||||
|
|
||||||
# General Setup
|
|
||||||
if [ -x /usr/bin/memcached -a "${MEMCACHED_START}" == "TRUE" ]; then
|
|
||||||
echo "* Starting MEMCACHED..."
|
|
||||||
/usr/bin/memcached -d -P /run/memcached/memcached.pid -u memcached
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Laravel Specific
|
|
||||||
if [ -r artisan -a -e ${php}/.env ]; then
|
|
||||||
mp=$(mp ${php})
|
|
||||||
|
|
||||||
# Only adjust perms if this is an external mountpoint
|
|
||||||
if [ ${mp} -eq 0 -o -n "${FORCE_PERMS}" ] ; then
|
|
||||||
if [ -n "${FORCE_PERMS}" -o "${env}" != "local" -a -z "${SKIP_PERM}" ]; then
|
|
||||||
echo "* Setting Permissions..."
|
|
||||||
# Make sure our permissions are appropraite
|
|
||||||
find ${php} -type f -exec chmod 640 {} \;
|
|
||||||
find ${php} -type d -exec chmod 750 {} \;
|
|
||||||
find ${php}/public -type f -exec chmod 644 {} \;
|
|
||||||
find ${php}/public -type d -exec chmod 755 {} \;
|
|
||||||
chmod o+rx ${php}
|
|
||||||
chmod a+rx ${php}/artisan
|
|
||||||
chown -R ${SITE_USER}:www-data ${php}
|
|
||||||
chown -R www-data:www-data ${php}/storage ${php}/bootstrap ${php}/composer.*
|
|
||||||
[ -e ${php}/vendor ] && chown -R www-data:www-data ${php}/vendor
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# See if we need to refresh our dependancies
|
|
||||||
if [[ -r composer.json && ( -e .composer.refresh || ! -d vendor ) ]]; then
|
|
||||||
echo "* Composer installing dependancies..."
|
|
||||||
|
|
||||||
rm -f ${php}/bootstrap/cache/*.php
|
|
||||||
if [ "${env}" != "local" ]; then
|
|
||||||
NODEV="--no-dev"
|
|
||||||
fi
|
|
||||||
|
|
||||||
mp=$(mp ${composer})
|
|
||||||
|
|
||||||
if [ ${mp} -eq 0 -o -n "${FORCE_PERMS}" ] ; then
|
|
||||||
[ -n "${FORCE_PERMS}" -o "${env}" != "local" -a -z "${SKIP_PERM}" ] && chown -R www-data:www-data ${composer}
|
|
||||||
[ ! -d ${php}/vendor ] && mkdir -m 750 ${php}/vendor && chown www-data:www-data ${php}/vendor
|
|
||||||
[ -n "${FORCE_PERMS}" -o "${env}" != "local" -a -z "${SKIP_PERM}" ] && chmod g+w ${php}
|
|
||||||
fi
|
|
||||||
|
|
||||||
su www-data -s /bin/sh -c "composer install --optimize-autoloader ${NODEV}" && ( test -e .composer.refresh && rm -f .composer.refresh )
|
|
||||||
[ -n "${FORCE_PERMS}" -o "${env}" != "local" -a -z "${SKIP_PERM}" ] && [ ${mp} -eq 0 ] && chmod g-w ${php}
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -e .lumen ]; then
|
|
||||||
echo "* Lumen detected, not caching configuration..."
|
|
||||||
else
|
|
||||||
# We only check for non mount points, in case this container has the app inside
|
|
||||||
mp=$(mp ${php})
|
|
||||||
if [ ${mp} -eq 1 ]; then
|
|
||||||
echo "* Caching configuration..."
|
|
||||||
su www-data -s /bin/sh -c "(php artisan optimize)"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "${role}" = "app" ]; then
|
|
||||||
if [ "${env}" != "local" ]; then
|
|
||||||
if [ -z "${IGNORE_MIGRATION}" ]; then
|
|
||||||
if [ -r .migrate ]; then
|
|
||||||
echo "* Running migration..."
|
|
||||||
# If DB_HOST not set, source the env file
|
|
||||||
[ -z "${DB_HOST}" -a -r .env ] && . .env
|
|
||||||
|
|
||||||
if [ -n "${DB_HOST}" -a -n "${DB_PORT}" ]; then
|
|
||||||
while ! wait-for-it -h ${DB_HOST} -p ${DB_PORT} -t 5 -q; do
|
|
||||||
echo "? Waiting for database at ${DB_HOST}:${DB_PORT}"
|
|
||||||
sleep 1;
|
|
||||||
done
|
|
||||||
echo "- DB is active on ${DB_HOST}:${DB_PORT}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
su www-data -s /bin/sh -c "php artisan migrate" && rm -f .migrate
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
[ -r .migrate ] && echo "! NOTE: Migration ignored due to IGNORE_MIGRATION"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# If passport is installed
|
|
||||||
if [ -d ${php}/vendor/laravel/passport ]; then
|
|
||||||
echo "* Generating OAUTH keys ..."
|
|
||||||
set +e
|
|
||||||
su www-data -s /bin/sh -c "php artisan passport:keys"
|
|
||||||
set -e
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
nginx_start
|
|
||||||
|
|
||||||
if [ "${LOCAL_QUEUE}" = "TRUE" ]; then
|
|
||||||
echo "* Starting local queue for [$(hostname)${LOCAL_QUEUES:+,${LOCAL_QUEUES}}] with job timeout of [${WORK_TIMEOUT:-90}], trying [${WORK_TRIES:-1}] times..."
|
|
||||||
su www-data -s /bin/sh -c "
|
|
||||||
(while true; do php ${PHP_OPTIONS} artisan queue:work --verbose --tries=${WORK_TRIES:-1} --timeout=${WORK_TIMEOUT:-90} --queue=$(hostname)${LOCAL_QUEUES:+,${LOCAL_QUEUES}} ${WORK_MEMORY:+--memory=${WORK_MEMORY}} ${WORK_ONCE:+--once}; done) &
|
|
||||||
"
|
|
||||||
fi
|
|
||||||
|
|
||||||
set +e
|
|
||||||
[ -x init-php.sh ] && su www-data -s /bin/bash "init-php.sh" &
|
|
||||||
|
|
||||||
exec /usr/local/bin/docker-php-entrypoint "$@"
|
|
||||||
|
|
||||||
elif [ "$role" = "queue" ]; then
|
|
||||||
QUEUE_CMD=work
|
|
||||||
|
|
||||||
if [ "${env}" == "local" ]; then
|
|
||||||
QUEUE_CMD=listen
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "* Running the queue..."
|
|
||||||
# We'll delay starting in case the app is caching
|
|
||||||
sleep 15
|
|
||||||
|
|
||||||
su www-data -s /bin/sh -c "
|
|
||||||
while true; do
|
|
||||||
php ${PHP_OPTIONS} artisan queue:${QUEUE_CMD} --verbose --tries=${WORK_TRIES:-1} --timeout=${WORK_TIMEOUT:-90} ${WORK_QUEUES:+--queue=${WORK_QUEUES}} ${WORK_MEMORY:+--memory=${WORK_MEMORY}} ${WORK_ONCE:+--once}
|
|
||||||
done
|
|
||||||
"
|
|
||||||
|
|
||||||
elif [ "$role" = "scheduler" ]; then
|
|
||||||
echo "* Running the scheduler..."
|
|
||||||
# We'll delay starting in case the app is caching
|
|
||||||
sleep 15
|
|
||||||
|
|
||||||
su www-data -s /bin/sh -c "
|
|
||||||
while true; do
|
|
||||||
(php ${PHP_OPTIONS} artisan schedule:work --verbose --no-interaction &)
|
|
||||||
done
|
|
||||||
"
|
|
||||||
fi
|
|
||||||
|
|
||||||
else
|
|
||||||
nginx_start
|
|
||||||
|
|
||||||
echo "? NO container role \"${role}\", AND/OR no laravel install, just starting php-fpm"
|
|
||||||
exec /usr/local/bin/docker-php-entrypoint "$@"
|
|
||||||
fi
|
|
@ -1,43 +0,0 @@
|
|||||||
server {
|
|
||||||
listen 80 default_server;
|
|
||||||
listen [::]:80 default_server;
|
|
||||||
|
|
||||||
access_log off;
|
|
||||||
client_max_body_size 64m;
|
|
||||||
error_log /dev/stdout info;
|
|
||||||
fastcgi_buffering off;
|
|
||||||
fastcgi_request_buffering off;
|
|
||||||
gzip_vary on;
|
|
||||||
gzip_min_length 10240;
|
|
||||||
gzip_proxied expired no-cache no-store private auth;
|
|
||||||
gzip_types text/plain text/css application/javascript;
|
|
||||||
index index.php index.html;
|
|
||||||
root /var/www/html/public;
|
|
||||||
server_tokens off;
|
|
||||||
|
|
||||||
set $my_https "off";
|
|
||||||
if ($http_x_forwarded_proto = "https") {
|
|
||||||
set $my_https "on";
|
|
||||||
}
|
|
||||||
|
|
||||||
location / {
|
|
||||||
try_files $uri $uri/ /index.php?$query_string;
|
|
||||||
}
|
|
||||||
|
|
||||||
location ~ \.php$ {
|
|
||||||
try_files $uri =404;
|
|
||||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
||||||
fastcgi_pass 127.0.0.1:9000;
|
|
||||||
fastcgi_index index.php;
|
|
||||||
|
|
||||||
include fastcgi_params;
|
|
||||||
|
|
||||||
fastcgi_param HTTPS $my_https;
|
|
||||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
||||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
||||||
fastcgi_param SERVER_NAME $host;
|
|
||||||
|
|
||||||
fastcgi_read_timeout 600s;
|
|
||||||
fastcgi_send_timeout 600s;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,16 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# This will install our PHP modules
|
|
||||||
# call peck-install module1 module2
|
|
||||||
|
|
||||||
# First install some dependancies
|
|
||||||
apk add --no-cache autoconf gcc libc-dev make
|
|
||||||
|
|
||||||
# Install the modules
|
|
||||||
for module in $@; do
|
|
||||||
pecl install -o -f ${module} && docker-php-ext-enable ${module}
|
|
||||||
done
|
|
||||||
|
|
||||||
# Clean up
|
|
||||||
rm -rf /tmp/pear
|
|
||||||
apk del --no-cache autoconf gcc libc-dev make
|
|
@ -1,12 +0,0 @@
|
|||||||
[www]
|
|
||||||
group = www-data
|
|
||||||
listen = 127.0.0.1:9000
|
|
||||||
pm = dynamic
|
|
||||||
pm.max_children = 25
|
|
||||||
pm.max_spare_servers = 10
|
|
||||||
pm.min_spare_servers = 5
|
|
||||||
pm.start_servers = 10
|
|
||||||
user = www-data
|
|
||||||
prefix = /var/www/html
|
|
||||||
php_admin_value[memory_limit] = 512M
|
|
||||||
php_admin_value[max_execution_time] = 300
|
|
26
msmtprc
26
msmtprc
@ -1,26 +0,0 @@
|
|||||||
# A system wide configuration file is optional.
|
|
||||||
defaults
|
|
||||||
port 25
|
|
||||||
tls off
|
|
||||||
|
|
||||||
# If it exists, it usually defines a default account.
|
|
||||||
# This allows msmtp to be used like /usr/sbin/sendmail.
|
|
||||||
account default
|
|
||||||
|
|
||||||
# Authentication
|
|
||||||
auth off
|
|
||||||
|
|
||||||
# The SMTP smarthost
|
|
||||||
host smtp
|
|
||||||
|
|
||||||
# Envelope-from address
|
|
||||||
from nobody@%H
|
|
||||||
|
|
||||||
# Sets the argument of the SMTP EHLO
|
|
||||||
domain web
|
|
||||||
|
|
||||||
# Construct envelope-from addresses of the form "user@oursite.example"
|
|
||||||
#allow_from_override on
|
|
||||||
|
|
||||||
# Syslog logging with facility LOG_MAIL instead of the default LOG_USER
|
|
||||||
syslog LOG_MAIL
|
|
Loading…
Reference in New Issue
Block a user