We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3410213 + 1394a46 commit 74a4246Copy full SHA for 74a4246
docker-compose.yml
@@ -35,3 +35,6 @@ services:
35
MYSQL_PASSWORD: password_test
36
ports:
37
- "3306:3306"
38
+
39
+ mongodb:
40
+ image: mongo:3.4
docker/php/Dockerfile
@@ -17,6 +17,10 @@ RUN apt-get update && apt-get install -y \
17
intl \
18
opcache
19
20
+# MongoDB extension for PHP 7
21
+RUN pecl install mongodb \
22
+ && docker-php-ext-enable mongodb
23
24
# Install GD
25
RUN apt-get install -y \
26
libfreetype6-dev \
0 commit comments