aboutsummaryrefslogtreecommitdiffhomepage
path: root/docker/php
diff options
context:
space:
mode:
authorFabien MEURILLON <fabien@meurillon.org>2016-01-09 14:47:32 +0100
committerFabien MEURILLON <fabien@meurillon.org>2016-01-10 14:41:42 +0100
commit540ef5e084db2295d7ca476c980ec10fb90e9722 (patch)
tree41cad93a774eb342abf81ba4cf1cbf6d803b9d2b /docker/php
parent5ad863c63a023d754998a08ec55f43b3ebe2ede9 (diff)
downloadwallabag-540ef5e084db2295d7ca476c980ec10fb90e9722.tar.gz
wallabag-540ef5e084db2295d7ca476c980ec10fb90e9722.tar.zst
wallabag-540ef5e084db2295d7ca476c980ec10fb90e9722.zip
Add basic docker-compose configuration
Diffstat (limited to 'docker/php')
-rw-r--r--docker/php/Dockerfile10
1 files changed, 10 insertions, 0 deletions
diff --git a/docker/php/Dockerfile b/docker/php/Dockerfile
new file mode 100644
index 00000000..7c56ae57
--- /dev/null
+++ b/docker/php/Dockerfile
@@ -0,0 +1,10 @@
1FROM php:fpm
2
3RUN apt-get update && apt-get install -y \
4 libmcrypt-dev libicu-dev libpq-dev libxml2-dev \
5 && docker-php-ext-install \
6 iconv mcrypt mbstring intl pdo pdo_mysql pdo_pgsql
7
8RUN usermod -u 1000 www-data
9
10CMD ["php-fpm"]