diff options
author | Fabien MEURILLON <fabien@meurillon.org> | 2016-01-09 14:47:32 +0100 |
---|---|---|
committer | Fabien MEURILLON <fabien@meurillon.org> | 2016-01-10 14:41:42 +0100 |
commit | 540ef5e084db2295d7ca476c980ec10fb90e9722 (patch) | |
tree | 41cad93a774eb342abf81ba4cf1cbf6d803b9d2b /docker/php | |
parent | 5ad863c63a023d754998a08ec55f43b3ebe2ede9 (diff) | |
download | wallabag-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/Dockerfile | 10 |
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 @@ | |||
1 | FROM php:fpm | ||
2 | |||
3 | RUN 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 | |||
8 | RUN usermod -u 1000 www-data | ||
9 | |||
10 | CMD ["php-fpm"] | ||