Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
a63429c5
Commit
a63429c5
authored
Feb 20, 2020
by
Dominik Hebeler
Browse files
removed Dockerfile to test Heroku
parent
2e4b5308
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.dockerignore
View file @
a63429c5
...
...
@@ -2,3 +2,6 @@ README.md
CHANGELOG.md
docker-compose.yml
Dockerfile
vendor/*
node_modules/*
storage/logs/*
\ No newline at end of file
Dockerfile
deleted
100644 → 0
View file @
2e4b5308
FROM
alpine:latest
RUN
apk add
--update
\
nginx
\
tzdata
\
ca-certificates
\
dcron
\
zip
\
redis
\
php7
\
php7-fpm
\
php7-common
\
php7-curl
\
php7-mbstring
\
php7-sqlite3
\
php7-pdo_mysql
\
php7-pdo_sqlite
\
php7-dom
\
php7-simplexml
\
php7-tokenizer
\
php7-zip
\
php7-redis
\
php7-gd
\
php7-json
\
php7-pcntl
\
php7-opcache
\
php7-fileinfo
\
&&
rm
-rf
/var/cache/apk/
*
WORKDIR
/html
RUN
sed
-i
's/user = nobody/user = nginx/g'
/etc/php7/php-fpm.d/www.conf
&&
\
sed
-i
's/group = nobody/group = nginx/g'
/etc/php7/php-fpm.d/www.conf
&&
\
sed
-i
's/pm.max_children = 5/pm.max_children = 100/g'
/etc/php7/php-fpm.d/www.conf
&&
\
sed
-i
's/pm.start_servers = 2/pm.start_servers = 5/g'
/etc/php7/php-fpm.d/www.conf
&&
\
sed
-i
's/pm.min_spare_servers = 1/pm.min_spare_servers = 5/g'
/etc/php7/php-fpm.d/www.conf
&&
\
sed
-i
's/pm.max_spare_servers = 3/pm.max_spare_servers = 25/g'
/etc/php7/php-fpm.d/www.conf
&&
\
sed
-i
's/user = www-data/user = nginx/g'
/etc/php7/php-fpm.d/www.conf
&&
\
sed
-i
's/group = www-data/group = nginx/g'
/etc/php7/php-fpm.d/www.conf
&&
\
sed
-i
's/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/g'
/etc/php7/php.ini
&&
\
sed
-i
's/expose_php = On/expose_php = Off/g'
/etc/php7/php.ini
&&
\
# Opcache configuration
sed -i 's/;opcache.enable=1/opcache.enable=1/g' /etc/php7/php.ini && \
sed -i 's/;opcache.memory_consumption=128/opcache.memory_consumption=128/g' /etc/php7/php.ini && \
sed -i 's/;opcache.interned_strings_buffer=8/opcache.interned_strings_buffer=8/g' /etc/php7/php.ini && \
sed -i 's/;opcache.max_accelerated_files=10000/opcache.max_accelerated_files=10000/g' /etc/php7/php.ini && \
sed -i 's/;opcache.max_wasted_percentage=5/opcache.max_wasted_percentage=5/g' /etc/php7/php.ini && \
sed -i 's/;opcache.validate_timestamps=1/opcache.validate_timestamps=1/g' /etc/php7/php.ini && \
sed -i 's/;opcache.revalidate_freq=2/opcache.revalidate_freq=300/g' /etc/php7/php.ini && \
echo "daemonize yes" >> /etc/redis.conf && \
ln -s /dev/null /var/log/nginx/access.log && \
ln -s /dev/stdout /var/log/nginx/error.log && \
cp /usr/share/zoneinfo/Europe/Berlin /etc/localtime && \
echo "Europe/Berlin" > /etc/timezone && \
(crontab -l ; echo "* * * * * php /html/artisan schedule:run >> /dev/null 2>&1") | crontab -
COPY
config/nginx.conf /etc/nginx/nginx.conf
COPY
config/nginx-default.conf /etc/nginx/conf.d/default.conf
COPY
--chown=root:nginx . /html
WORKDIR
/html
EXPOSE
80
CMD
chown -R root:nginx storage/logs/metager bootstrap/cache && \
chmod -R g+w storage/logs/metager bootstrap/cache && \
crond -L /dev/stdout && \
nginx && \
php-fpm7 -D && \
redis-server /etc/redis.conf && \
su -s /bin/sh -c 'php artisan requests:fetcher' nginx
Dockerfile.old
0 → 100644
View file @
a63429c5
FROM php:7.3-fpm
RUN apt update && \
apt install -y \
libpng-dev && \
printf "\n" | pecl install -o -f redis && \
rm -rf /tmp/pear && \
docker-php-ext-configure gd && \
docker-php-ext-install gd pcntl opcache && \
docker-php-ext-enable redis opcache
chart/templates/deployment.yaml
View file @
a63429c5
...
...
@@ -48,23 +48,6 @@ spec:
name
:
{{
.Values.application.secretName
}}
{{
- end
}}
env
:
{{
- if .Values.postgresql.managed
}}
-
name
:
POSTGRES_USER
valueFrom
:
secretKeyRef
:
name
:
app-postgres
key
:
username
-
name
:
POSTGRES_PASSWORD
valueFrom
:
secretKeyRef
:
name
:
app-postgres
key
:
password
-
name
:
POSTGRES_HOST
valueFrom
:
secretKeyRef
:
name
:
app-postgres
key
:
privateIP
{{
- end
}}
-
name
:
DATABASE_URL
value
:
{{
.Values.application.database_url | quote
}}
-
name
:
GITLAB_ENVIRONMENT_NAME
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment