-
-
Save tanayc0009/61f61b806246d0bb57dd37705d37f05c to your computer and use it in GitHub Desktop.
Revisions
-
hasinhayder revised this gist
Dec 23, 2024 . 1 changed file with 0 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,3 @@ services: mysql: image: mysql:8.4.3 @@ -10,9 +8,6 @@ services: - ./mysql:/var/lib/mysql environment: - MYSQL_ROOT_PASSWORD=root - MYSQL_TCP_PORT=3306 phpMyAdmin: image: phpmyadmin -
hasinhayder created this gist
Dec 23, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ version: '3.1' services: mysql: image: mysql:8.4.3 restart: always ports: - 3306:3306 volumes: - ./mysql:/var/lib/mysql environment: - MYSQL_ROOT_PASSWORD=root - MYSQL_PASSWORD=admin - MYSQL_USER=admin - MYSQL_DATABASE=test - MYSQL_TCP_PORT=3306 phpMyAdmin: image: phpmyadmin restart: always ports: - 8080:80 environment: - PMA_ARBITRARY=1