Skip to content

Commit

Permalink
Replaced mariadb client with mysql-client
Browse files Browse the repository at this point in the history
  • Loading branch information
andriyun committed Apr 12, 2021
1 parent 002792f commit 3850f12
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .docker/os2web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,17 @@ RUN set -eux; \
libxml2-dev \
git \
wget \
mariadb-client-10.3 \
lsb-release \
gnupg \
cron; \
docker-php-ext-install soap; \
curl -fsSL "https://github.com/drush-ops/drush-launcher/releases/latest/download/drush.phar" -o /usr/local/bin/drush && chmod +x /usr/local/bin/drush
curl -fsSL "https://github.com/drush-ops/drush-launcher/releases/latest/download/drush.phar" -o /usr/local/bin/drush && chmod +x /usr/local/bin/drush; \
# Addind mysql-client
wget https://repo.mysql.com//mysql-apt-config_0.8.13-1_all.deb; \
echo 4 | dpkg -i mysql-apt-config_0.8.13-1_all.deb; \
apt update; \
apt install -qq -y mysql-client; \
echo "[client]" >> /etc/mysql/my.cnf; echo "ssl-mode=DISABLED" >> /etc/mysql/my.cnf

# Removing standard Drupal core and loading OS2Web project.
WORKDIR /opt
Expand Down

0 comments on commit 3850f12

Please sign in to comment.