-
-
Notifications
You must be signed in to change notification settings - Fork 546
/
Dockerfile
executable file
·66 lines (56 loc) · 2.09 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
FROM richarvey/nginx-php-fpm:latest
# The location of the web files
ARG VOL=/var/www/html
ENV VOL ${VOL}
VOLUME ${VOL}
# Configure nginx-php-fpm image to use this dir.
ENV WEBROOT ${VOL}
RUN apk add --no-cache gnu-libiconv libldap gmp
ENV LD_PRELOAD /usr/lib/preloadable_libiconv.so php
RUN echo && \
# Install and configure missing PHP requirements
/usr/local/bin/docker-php-ext-configure bcmath && \
/usr/local/bin/docker-php-ext-install bcmath && \
apk add --no-cache --virtual .docker-php-dependencies \
openldap-dev gmp-dev && \
/usr/local/bin/docker-php-ext-configure ldap && \
/usr/local/bin/docker-php-ext-install ldap gmp && \
apk del .docker-php-dependencies && \
echo "max_execution_time = 120" >> /usr/local/etc/php/conf.d/docker-vars.ini && \
echo
RUN echo && \
# Fix 'Error when trying to read crontab : crontab: must be suid to work properly'
apk add --no-cache --update busybox-suid && \
# Fix 'Error when trying to read crontab : crontab: can't open 'nginx': No such file or directory'
echo '* * * * * php /var/www/html/sources/scheduler.php #Teampass scheduler' > /var/spool/cron/crontabs/nginx && \
echo
# Fix API URL, BUG: API not working in container. #2100
# Search last } and insert configuration rows before
RUN sed -i "/^}/i \
location /api/ {\
try_files $uri $uri/ /api/index.php?$args;\
}" /etc/nginx/sites-enabled/default.conf
COPY teampass-docker-start.sh /teampass-docker-start.sh
# Configure nginx-php-fpm image to pull our code.
ENV REPO_URL https://github.com/nilsteampassnet/TeamPass.git
#ENV GIT_TAG 3.0.0.14
# Configure supervisord program:crond
RUN echo && \
mkdir -pv /etc/supervisor/conf.d && \
echo -e "\
[program:crond]\n\
command=/usr/sbin/crond -f -L /dev/stdout\n\
autostart=true\n\
autorestart=true\n\
priority=15\n\
user=root\n\
stdout_events_enabled=true\n\
stderr_events_enabled=true\n\
stdout_logfile=/dev/stdout\n\
stdout_logfile_maxbytes=0\n\
stderr_logfile=/dev/stderr\n\
stderr_logfile_maxbytes=0\n\
stopsignal=QUIT" > /etc/supervisor/conf.d/crond.conf && \
echo
ENTRYPOINT ["/bin/sh"]
CMD ["/teampass-docker-start.sh"]