Compare commits

..

3 Commits

Author SHA1 Message Date
f3bbf8f8f9 Merge pull request 'master' (#1) from chemi/DockerWordpress_improvements:master into master
Reviewed-on: https://gitea.cect.org/Public/DockerWordpress/pulls/1
2021-05-12 10:25:30 +00:00
08395fd53f SITEURL
Added SITEURL environment variable to allow phpmyadmin accession through a directory of the main WP url
2021-05-12 10:23:06 +00:00
f3d2bb5626 Added PMA_ABSOLUTE_URI to phpmyadmin container
Adding PMA_ABSOLUTE_URI to the phpmyadmin docker section will allow to access the phpmyadmin through the directory phpmyadmini of the main WP site URL. This way one domain is used instead of two (one for WP and the other for phpmyadmin)
2021-05-12 10:19:26 +00:00
2 changed files with 2 additions and 1 deletions

View File

@ -5,4 +5,4 @@ MYSQL_PASSWORD=The_wpuser_password_here
MYSQL_WP_DATABASE=wordpressdb MYSQL_WP_DATABASE=wordpressdb
EX_PORT=8000 EX_PORT=8000
MY_PORT=8100 MY_PORT=8100
SITEURL=https://example.com

View File

@ -43,3 +43,4 @@ services:
MYSQL_USER: $MYSQL_USER MYSQL_USER: $MYSQL_USER
MYSQL_PASSWORD: $MYSQL_PASSWORD MYSQL_PASSWORD: $MYSQL_PASSWORD
MYSQL_ROOT_PASSWORD: $MYSQL_ROOT_PASSWORD MYSQL_ROOT_PASSWORD: $MYSQL_ROOT_PASSWORD
PMA_ABSOLUTE_URI: $SITEURL/phpmyadmin/