Last active
March 5, 2026 13:55
-
-
Save bplaat/159ebf3ee88a214426f62f343958f3e9 to your computer and use it in GitHub Desktop.
Wordpress with mysql-client docker container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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