trying to install wordpress with cli

This commit is contained in:
hugo gogo
2022-09-09 13:59:35 +02:00
parent 3f7a3e2170
commit 1b48f4b6d3
6 changed files with 45 additions and 36 deletions

View File

@@ -4,14 +4,21 @@ ARG DB_NAME
ARG DB_USER
ARG DB_PSWD
RUN apt update && \
apt install -y mariadb-client mariadb-server && \
rm -rf /var/lib/apt/lists/* && \
\
service mysql start && \
RUN apt update && apt install -y \
mariadb-client \
mariadb-server \
&& \
rm -rf /var/lib/apt/lists/*
# 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 *.* TO '${DB_USER}'@'localhost' with grant option;"
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';
CMD [ "mysqld" ]

View File

@@ -1 +0,0 @@
mon_super_mot_de_passe

View File

@@ -1,6 +1,8 @@
FROM debian:buster
RUN apt update && apt install -y nginx openssl && rm -rf /var/lib/apt/lists/*
RUN apt update && \
apt install -y nginx openssl && \
rm -rf /var/lib/apt/lists/*
# for debug
#RUN apt install -y procps vim

View File

@@ -1,22 +1,20 @@
FROM debian:buster
#RUN wget https://wordpress.org/latest.tar.gz ; tar -xzvf latest.tar.gz
RUN apt update && apt install -y \
php7.3 \
curl
## for debug
#RUN apt install -y procps vim
#
## create ssl certificate
#RUN openssl req -newkey rsa:2048 -nodes -x509 \
# -keyout /etc/ssl/private/hulamy.42.fr.key -out /etc/ssl/certs/hulamy.42.fr.crt \
# -subj "/C=fr/ST=ile-de-france/L=paris/O=42/OU=inception/CN=hulamy.42.fr"
#
## import sites conf files
#COPY ./conf/nginx.conf /etc/nginx/
#COPY ./conf/inception_nginx.conf /etc/nginx/conf.d/
#
## for test
#COPY ./conf/index.html /data/www/
#COPY ./conf/https/index.html /data/wwws/
#
#CMD [ "nginx", "-g", "daemon off;" ]
# 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
# install wordpress with cli : https://make.wordpress.org/cli/handbook/how-to-install/
#RUN wp core download --path=${WP_DIR}
# create config file :
#RUN wp config create --dbname=${DB_NAME} --dbuser=${DB_USER} --dbpass=${DB_PASS} --path=${WP_DIR}
# create db :
#RUN wp db create --path=${WP_DIR}
# 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}