Skip to content

Commit

Permalink
build(docker-compose.yml) update localhost ports
Browse files Browse the repository at this point in the history
  • Loading branch information
lucatume committed Dec 8, 2023
1 parent 7f385d1 commit 014d205
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.8"

services:
database:
container_name: wpbrowser_4_database
container_name: wpbrowser_3.5_database
image: mariadb:10.8
environment:
MYSQL_ROOT_PASSWORD: ${WORDPRESS_DB_PASSWORD}
Expand Down
26 changes: 13 additions & 13 deletions tests/.env
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
WORDPRESS_ROOT_DIR=var/wordpress
WORDPRESS_URL=http://localhost:2389
WORDPRESS_DOMAIN=localhost:2389
WORDPRESS_SUBDIR_URL=http://localhost:2389/subdir
WORDPRESS_SUBDOMAIN_URL=http://test1.localhost:2389
WORDPRESS_URL=http://localhost:3589
WORDPRESS_DOMAIN=localhost:3589
WORDPRESS_SUBDIR_URL=http://localhost:3589/subdir
WORDPRESS_SUBDOMAIN_URL=http://test1.localhost:3589
WORDPRESS_ADMIN_USER=admin
WORDPRESS_ADMIN_PASSWORD=admin
WORDPRESS_DB_DSN=mysql:host=127.0.0.1;port=2391;dbname=wordpress
WORDPRESS_DB_HOST=127.0.0.1:2391
WORDPRESS_DB_DSN=mysql:host=127.0.0.1;port=3591;dbname=wordpress
WORDPRESS_DB_HOST=127.0.0.1:3591
WORDPRESS_DB_NAME=wordpress
WORDPRESS_DB_USER=root
WORDPRESS_DB_PASSWORD=password
WORDPRESS_DB_URL=mysql://root:password@127.0.0.1:2391/wordpress
WORDPRESS_DB_LOCALHOST_PORT=2391
WORDPRESS_SUBDIR_DB_DSN=mysql:host=127.0.0.1;port=2391;dbname=test_subdir
WORDPRESS_DB_URL=mysql://root:password@127.0.0.1:3591/wordpress
WORDPRESS_DB_LOCALHOST_PORT=3591
WORDPRESS_SUBDIR_DB_DSN=mysql:host=127.0.0.1;port=3591;dbname=test_subdir
WORDPRESS_SUBDIR_DB_NAME=test_subdir
WORDPRESS_SUBDOMAIN_DB_DSN=mysql:host=127.0.0.1;port=2391;dbname=test_subdomain
WORDPRESS_SUBDOMAIN_DB_DSN=mysql:host=127.0.0.1;port=3591;dbname=test_subdomain
WORDPRESS_SUBDOMAIN_DB_NAME=test_subdomain
WORDPRESS_EMPTY_DB_DSN=mysql:host=127.0.0.1;port=2391;dbname=empty
WORDPRESS_EMPTY_DB_DSN=mysql:host=127.0.0.1;port=3591;dbname=empty
WORDPRESS_EMPTY_DB_NAME=empty
WORDPRESS_TABLE_PREFIX=wp_
WORDPRESS_LOCALHOST_PORT=2389
WORDPRESS_LOCALHOST_PORT=3589
CHROMEDRIVER_HOST=localhost
CHROMEDRIVER_PORT=2390
CHROMEDRIVER_PORT=3590
CHROMEDRIVER_BINARY=vendor/bin/chromedriver
TEST_TMP_ROOT_DIR=var/tmp
TEST_CACHE_DIR=var/tmp/_cache
Expand Down

0 comments on commit 014d205

Please sign in to comment.