add support for docker, resolves #239 (#246)

This commit is contained in:
Brennen Raimer
2021-07-28 08:38:33 -04:00
committed by GitHub
parent cf95b2a9fc
commit 247b047845
2 changed files with 49 additions and 0 deletions

34
docker/Dockerfile Normal file
View File

@@ -0,0 +1,34 @@
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-available/filegator.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/"

15
docker/docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
version: '2'
services:
filegator:
build: .
image: filegator:latest
restart: always
ports:
- "80:80"
volumes:
- repository:/var/www/filegator/repository
- private:/var/www/filegator/private
volumes:
repository:
private: