Skip to content

Commit

Permalink
#3744 Docker compose for development environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Trofimov committed Apr 15, 2022
1 parent b78eef6 commit 15d3d19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ services:
- 8080:80
environment:
- PMA_HOST=mysql
- PMA_USER=una
- PMA_PASSWORD=una
- PMA_USER=root
- PMA_PASSWORD=root
volumes:
- ./scripts/docker-compose/phpmyadmin.inc.php:/etc/phpmyadmin/config.user.inc.php
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker-compose/PHP.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y \
unzip \
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install -j$(nproc) gd \
&& docker-php-ext-install -j$(nproc) pdo pdo_mysql \
&& docker-php-ext-install -j$(nproc) pdo pdo_mysql mysqli \
&& docker-php-ext-install -j$(nproc) zip exif opcache iconv mbstring \
# && pecl install xdebug && docker-php-ext-enable xdebug \
# && pecl install mcrypt-1.0.3 && docker-php-ext-enable mcrypt \
Expand Down

0 comments on commit 15d3d19

Please sign in to comment.