not much more, one hour per day is really really not enough that's frustrating... still trying to configure wp with mariadb

This commit is contained in:
hugo gogo
2022-09-11 10:47:01 +02:00
parent e994b60790
commit 96193494a4
5 changed files with 23 additions and 15 deletions

View File

@@ -10,7 +10,6 @@ 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};" && \

View File

@@ -2,20 +2,20 @@ FROM debian:buster
RUN apt update && apt install -y \
php7.3 \
mariadb-client \
curl
# mariadb-client
# 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 && \
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 WP_DIR=/var/www/html
#ARG WP_URL
#ARG WP_TITLE
#ARG WP_ADMIN
#ARG WP_ADMIN_PSWD
#ARG WP_ADMIN_EMAIL
ARG DB_NAME
ARG DB_USER
@@ -24,9 +24,9 @@ ARG DB_PSWD
# install wordpress with cli : https://make.wordpress.org/cli/handbook/how-to-install/
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} --allow-root
RUN wp config create --dbname=${DB_NAME} --dbuser=${DB_USER} --dbpass=${DB_PASS} --path=${WP_DIR} --allow-root --skip-check
# create db :
RUN service mysql start && wp db create --path=${WP_DIR} --allow-root
#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} --allow-root