Skip to content

Instantly share code, notes, and snippets.

@bplaat
Last active March 5, 2026 13:55
Show Gist options
  • Select an option

  • Save bplaat/159ebf3ee88a214426f62f343958f3e9 to your computer and use it in GitHub Desktop.

Select an option

Save bplaat/159ebf3ee88a214426f62f343958f3e9 to your computer and use it in GitHub Desktop.
Wordpress with mysql-client docker container
FROM wordpress:latest
RUN apt-get update && \
apt-get install -y gnupg wget lsb-release && \
wget https://dev.mysql.com/get/mysql-apt-config_0.8.29-1_all.deb && \
DEBIAN_FRONTEND=noninteractive dpkg -i mysql-apt-config_0.8.29-1_all.deb && \
apt-get update && \
apt-get install -y mysql-client && \
rm -rf /var/lib/apt/lists/* /mysql-apt-config_0.8.29-1_all.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment