wp fail certainly because docker build have no access to docker network

This commit is contained in:
hugo gogo
2022-09-10 09:56:01 +02:00
parent 1b48f4b6d3
commit e994b60790
7 changed files with 61 additions and 14 deletions

View File

@@ -10,15 +10,12 @@ RUN apt update && apt install -y \
&& \
rm -rf /var/lib/apt/lists/*
# (NOT NECESSARY : DONE BY WP)
# configure wp database
RUN service mysql start && \
mariadb --execute="CREATE DATABASE ${DB_NAME};" && \
mariadb --execute="CREATE USER '${DB_USER}'@'localhost' IDENTIFIED BY '${DB_PSWD}';" && \
mariadb --execute="GRANT ALL PRIVILEGES ON &{DB_NAME}.* TO '${DB_USER}'@'localhost' with grant option;"
# alternative : (https://mariadb.com/resources/blog/how-to-install-and-run-wordpress-with-mariadb/)
# create database new_wp;
# grant all privileges on new_wp.* to wpuser@localhost identified by 'myp@Ssw0Rd';
mariadb --execute="GRANT ALL PRIVILEGES ON ${DB_NAME}.* TO '${DB_USER}'@'localhost' with grant option;"
CMD [ "mysqld" ]

View File

@@ -2,19 +2,31 @@ FROM debian:buster
RUN apt update && apt install -y \
php7.3 \
mariadb-client \
curl
# install wp-cli : https://make.wordpress.org/cli/handbook/guides/installing/
#RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar &&\
# chmod +x wp-cli.phar && \
# sudo mv wp-cli.phar /usr/local/bin/wp
RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar &&\
chmod +x wp-cli.phar && \
mv wp-cli.phar /usr/local/bin/wp
ARG WP_DIR
ARG WP_URL
ARG WP_TITLE
ARG WP_ADMIN
ARG WP_ADMIN_PSWD
ARG WP_ADMIN_EMAIL
ARG DB_NAME
ARG DB_USER
ARG DB_PSWD
# install wordpress with cli : https://make.wordpress.org/cli/handbook/how-to-install/
#RUN wp core download --path=${WP_DIR}
RUN wp core download --path=${WP_DIR} --allow-root
# create config file :
#RUN wp config create --dbname=${DB_NAME} --dbuser=${DB_USER} --dbpass=${DB_PASS} --path=${WP_DIR}
RUN wp config create --dbname=${DB_NAME} --dbuser=${DB_USER} --dbpass=${DB_PASS} --path=${WP_DIR} --allow-root
# create db :
#RUN wp db create --path=${WP_DIR}
RUN service mysql start && wp db create --path=${WP_DIR} --allow-root
# install wordpress :
#RUN wp core install --url=${WP_URL} --title=${WP_TITLE} --admin_user=${WP_ADMIN} --admin_password=${WP_ADMIN_PSWD} --admin_email=${WP_ADMIN_EMAIL} --path=${WP_DIR}
RUN wp core install --url=${WP_URL} --title=${WP_TITLE} --admin_user=${WP_ADMIN} --admin_password=${WP_ADMIN_PSWD} --admin_email=${WP_ADMIN_EMAIL} --path=${WP_DIR} --allow-root