mirror of
https://github.com/filegator/filegator.git
synced 2025-10-24 11:56:03 +02:00
35 lines
1.1 KiB
Docker
35 lines
1.1 KiB
Docker
FROM php:7-apache-buster
|
|
|
|
ENV APACHE_DOCUMENT_ROOT=/var/www/filegator/
|
|
|
|
RUN apt-get update > /dev/null && \
|
|
# Install and enable php zip extension
|
|
apt-get install -y wget unzip libzip-dev && \
|
|
docker-php-ext-install zip && \
|
|
docker-php-ext-enable zip && \
|
|
# Download and extract latest build
|
|
cd /var/www/ && \
|
|
wget https://github.com/filegator/static/raw/master/builds/filegator_latest.zip && \
|
|
unzip filegator_latest.zip && rm filegator_latest.zip && \
|
|
chown -R www-data:www-data filegator/ && \
|
|
chmod -R 775 filegator/ && \
|
|
# configure Apache
|
|
echo '\n\
|
|
<VirtualHost *:80> \n\
|
|
DocumentRoot /var/www/filegator/dist\n\
|
|
</VirtualHost>\n\
|
|
' > /etc/apache2/sites-enabled/000-default.conf && \
|
|
# configure php
|
|
mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" && \
|
|
# cleanup apt
|
|
apt-get purge -y wget unzip && \
|
|
apt-get autoclean -y && \
|
|
rm -Rf /var/lib/apt/lists/*
|
|
|
|
EXPOSE 80
|
|
|
|
VOLUME /var/www/filegator/repository
|
|
VOLUME /var/www/filegator/private
|
|
|
|
WORKDIR "/var/www/filegator/"
|