Code cleanup and improvement

This commit is contained in:
Dane Everitt 2020-11-14 13:10:11 -08:00
parent a07e6bd36f
commit fe725397eb
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
8 changed files with 80 additions and 93 deletions

View file

@ -1,18 +1,14 @@
#!/bin/ash #!/bin/ash
## Ensure we are in /app
cd /app cd /app
mkdir -p /var/log/panel/logs/ /var/log/supervisord/ /var/log/nginx/ /var/log/php7/ \ mkdir -p /var/log/panel/logs/ /var/log/supervisord/ /var/log/nginx/ /var/log/php7/ \
&& rm -rf /app/storage/logs/ \ && chmod 777 /var/log/panel/logs/ \
&& chmod 777 /var/log/panel/logs/ \ && ln -s /var/log/panel/logs/ /app/storage/
&& ln -s /var/log/panel/logs/ /app/storage/
## check for .env file and generate app keys if missing ## check for .env file and generate app keys if missing
if [ -f /app/var/.env ]; then if [ -f /app/var/.env ]; then
echo "external vars exist." echo "external vars exist."
rm -rf /app/.env rm -rf /app/.env
ln -s /app/var/.env /app/ ln -s /app/var/.env /app/
else else
echo "external vars don't exist." echo "external vars don't exist."
@ -60,7 +56,6 @@ fi
## check for DB up before starting the panel ## check for DB up before starting the panel
echo "Checking database status." echo "Checking database status."
until nc -z -v -w30 $DB_HOST 3306 until nc -z -v -w30 $DB_HOST 3306
do do
echo "Waiting for database connection..." echo "Waiting for database connection..."
# wait for 5 seconds before check again # wait for 5 seconds before check again
@ -69,17 +64,11 @@ done
## make sure the db is set up ## make sure the db is set up
echo -e "Migrating and Seeding D.B" echo -e "Migrating and Seeding D.B"
php artisan migrate --force php artisan migrate --seed --force
php artisan db:seed --force
## start cronjobs for the queue ## start cronjobs for the queue
echo -e "Starting cron jobs." echo -e "Starting cron jobs."
crond -L /var/log/crond -l 5 crond -L /var/log/crond -l 5
## install yarn stuff
yarn install --production
yarn add cross-env
yarn run build:production
echo -e "Starting supervisord." echo -e "Starting supervisord."
exec "$@" exec "$@"

View file

@ -1,36 +1,40 @@
FROM php:7.4-fpm-alpine # Stage 0:
# Build the assets that are needed for the frontend. This build stage is then discarded
# since we won't need NodeJS anymore in the future. This Docker image ships a final production
# level distribution of Pterodactyl.
FROM mhart/alpine-node:14
WORKDIR /app WORKDIR /app
RUN apk add --no-cache --update ca-certificates dcron curl git supervisor tar unzip nginx libpng-dev libxml2-dev libzip-dev certbot yarn; \
docker-php-ext-install bcmath; \
docker-php-ext-install gd; \
docker-php-ext-install mbstring; \
docker-php-ext-install pdo; \
docker-php-ext-install pdo_mysql; \
docker-php-ext-install tokenizer; \
docker-php-ext-install xml; \
docker-php-ext-configure zip --with-libzip=/usr/include; \
docker-php-ext-install zip; \
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
COPY . ./ COPY . ./
RUN yarn install --frozen-lockfile \
&& yarn run build:production
RUN cp .env.example .env \ # Stage 1:
# Build the actual container with all of the needed PHP dependencies that will run the application.
FROM php:7.4-fpm-alpine
WORKDIR /app
COPY . ./
COPY --from=0 /app/public/assets ./public/assets
RUN apk add --no-cache --update ca-certificates dcron curl git supervisor tar unzip nginx libpng-dev libxml2-dev libzip-dev certbot \
&& docker-php-ext-configure zip \
&& docker-php-ext-install bcmath gd pdo_mysql zip \
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
&& cp .env.example .env \
&& mkdir -p bootstrap/cache/ storage/framework/sessions storage/framework/views storage/framework/cache \
&& chmod 777 -R bootstrap storage \
&& composer install --no-dev --optimize-autoloader \ && composer install --no-dev --optimize-autoloader \
&& rm .env \ && rm -rf .env bootstrap/cache/*.php storage \
&& chown -R nginx:nginx . && chmod -R 777 storage/* bootstrap/cache && chown -R nginx:nginx .
RUN cp docker/default.conf /etc/nginx/conf.d/default.conf \ RUN rm /usr/local/etc/php-fpm.d/www.conf.default \
&& cat docker/www.conf > /usr/local/etc/php-fpm.d/www.conf \
&& rm /usr/local/etc/php-fpm.d/www.conf.default \
&& cat docker/supervisord.conf > /etc/supervisord.conf \
&& echo "* * * * * /usr/local/bin/php /app/artisan schedule:run >> /dev/null 2>&1" >> /var/spool/cron/crontabs/root \ && echo "* * * * * /usr/local/bin/php /app/artisan schedule:run >> /dev/null 2>&1" >> /var/spool/cron/crontabs/root \
&& sed -i s/ssl_session_cache/#ssl_session_cache/g /etc/nginx/nginx.conf \ && sed -i s/ssl_session_cache/#ssl_session_cache/g /etc/nginx/nginx.conf \
&& mkdir -p /var/run/php /var/run/nginx && mkdir -p /var/run/php /var/run/nginx \
&& apk del --no-cache libpng-dev libxml2-dev libzip-dev
COPY .github/docker/default.conf /etc/nginx/conf.d/default.conf
COPY .github/docker/www.conf /usr/local/etc/php-fpm.d/www.conf
COPY .github/docker/supervisord.conf /etc/supervisord.conf
EXPOSE 80 443 EXPOSE 80 443
ENTRYPOINT ["/bin/ash", ".github/docker/entrypoint.sh"]
ENTRYPOINT ["/bin/ash", "docker/entrypoint.sh"]
CMD [ "supervisord", "-n", "-c", "/etc/supervisord.conf" ] CMD [ "supervisord", "-n", "-c", "/etc/supervisord.conf" ]

View file

@ -1,4 +1,34 @@
version: '2' version: '3.8'
x-common:
database: &db-environment
# Do not remove the "&db-password" from the end of the line below, it is important
# for Panel functionality.
MYSQL_PASSWORD: "CHANGE_ME" &db-password
MYSQL_ROOT_PASSWORD: "CHANGE_ME_TOO"
panel: &panel-environment
APP_URL: "https://your.domain.here"
# A list of valid timezones can be found here: http://php.net/manual/en/timezones.php
APP_TIMEZONE: "UTC"
APP_SERVICE_AUTHOR: "noreply@example.com"
# Uncomment the line below and set to a non-empty value if you want to use Let's Encrypt
# to generate an SSL certificate for the Panel.
# LE_EMAIL: ""
mail: &mail-environment
MAIL_FROM: "noreply@example.com"
MAIL_DRIVER: "smtp"
MAIL_HOST: "mail"
MAIL_PORT: "1025"
MAIL_USERNAME: ""
MAIL_PASSWORD: ""
MAIL_ENCRYPTION: "true"
#
# ------------------------------------------------------------------------------------------
# DANGER ZONE BELOW
#
# The remainder of this file likely does not need to be changed. Please only make modifications
# below if you understand what you are doing.
#
services: services:
database: database:
image: mariadb:10.4 image: mariadb:10.4
@ -6,17 +36,12 @@ services:
volumes: volumes:
- "/srv/pterodactyl/database:/var/lib/mysql" - "/srv/pterodactyl/database:/var/lib/mysql"
environment: environment:
## Database settings <<: *db-environment
## change if you want it to be more secure. MYSQL_DATABASE: "panel"
- "MYSQL_ROOT_PASSWORD=apassword" MYSQL_USER: "pterodactyl"
- "MYSQL_DATABASE=pterodb"
- "MYSQL_USER=ptero"
- "MYSQL_PASSWORD=pterodbpass"
cache: cache:
image: redis:alpine image: redis:alpine
restart: always restart: always
panel: panel:
image: quay.io/pterodactyl/panel:latest image: quay.io/pterodactyl/panel:latest
restart: always restart: always
@ -32,47 +57,16 @@ services:
- "/srv/pterodactyl/certs/:/etc/letsencrypt/" - "/srv/pterodactyl/certs/:/etc/letsencrypt/"
- "/srv/pterodactyl/logs/:/var/log/" - "/srv/pterodactyl/logs/:/var/log/"
environment: environment:
## These are defaults and should be left alone <<: *panel-environment
- "APP_ENV=production" <<: *mail-environment
- "APP_DEBUG=false" DB_PASSWORD: *db-password
- "APP_THEME=pterodactyl" APP_ENV: "production"
- "APP_CLEAR_TASKLOG=720" APP_ENVIRONMENT_ONLY: "false"
- "APP_DELETE_MINUTES=10" CACHE_DRIVER: "redis"
- "APP_ENVIRONMENT_ONLY=false" SESSION_DRIVER: "redis"
- "QUEUE_HIGH=high" QUEUE_DRIVER: "redis"
- "QUEUE_STANDARD=standard" REDIS_HOST: "cache"
- "QUEUE_LOW=low" DB_HOST: "database"
## Cache settings
- "CACHE_DRIVER=redis"
- "SESSION_DRIVER=redis"
- "QUEUE_DRIVER=redis"
- "REDIS_HOST=cache"
- "REDIS_PASSWORD=null"
- "REDIS_PORT=6379"
## Domain settings
- "APP_URL=https://your.domain.here" ## if you are running this behind a reverse proxy with ssl app_url needs to be https still.
## Timezone settings
- "APP_TIMEZONE=UTC" ## http://php.net/manual/en/timezones.php
## Service egg settings
- "APP_SERVICE_AUTHOR=noreply@your.domain.here" ## this is the email that gets put on eggs you create
## Database settings
## These can be left alone. Only change if you know what you are doing.
- "DB_HOST=database"
- "DB_PORT=3306"
- "DB_DATABASE=pterodb"
- "DB_USERNAME=ptero"
- "DB_PASSWORD=pterodbpass"
## Email settings
- "MAIL_FROM=noreply@your.domain.here"
- "MAIL_DRIVER=smtp"
- "MAIL_HOST=mail"
- "MAIL_PORT=1025"
- "MAIL_USERNAME=''"
- "MAIL_PASSWORD=''"
- "MAIL_ENCRYPTION=true"
## certbot settings - Used to automatically generate ssl certs and
# - "LE_EMAIL=" ## uncomment if you are using ssl
networks: networks:
default: default:
ipam: ipam: