简体   繁体   中英

how to add “Phpmyadmin” to laravel sail (docker + laravel) - auto: answer

  • This is your docker-compose file

  • to add "Phpmyadmin" you just have to the following commands that I will leave in "answer"

    For more information: https://laravel.com/docs/sail

     version: "3" services: laravel.test: build: context: ./vendor/laravel/sail/runtimes/8.0 dockerfile: Dockerfile args: WWWGROUP: "${WWWGROUP}" image: sail-8.0/app ports: - "${APP_PORT:-80}:80" environment: WWWUSER: "${WWWUSER}" LARAVEL_SAIL: 1 volumes: - ".:/var/www/html" networks: - sail depends_on: - mysql mysql: image: "mysql:8.0" ports: - "${FORWARD_DB_PORT:-3306}:3306" environment: MYSQL_ROOT_PASSWORD: "${DB_PASSWORD}" MYSQL_DATABASE: "${DB_DATABASE}" MYSQL_USER: "${DB_USERNAME}" MYSQL_PASSWORD: "${DB_PASSWORD}" MYSQL_ALLOW_EMPTY_PASSWORD: "yes" volumes: - "sailmysql:/var/lib/mysql" networks: - sail healthcheck: test: ["CMD", "mysqladmin", "ping", "-p${DB_PASSWORD}"] retries: 3 timeout: 5s networks: sail: driver: bridge volumes: sailmysql: driver: local
  • I hope I have helped, since I realized that there is not much information on this, (at least not clearly)...

because I did not get clear answers to this question in the community, I decided to ask it and answer it.

To add a new docker container in our laravel sail, you must go to "docker-compose.yaml" which is in your project folder.

once there copy and paste the following command lines.

 phpmyadmin:
        image: phpmyadmin/phpmyadmin
        links:
            - mysql:mysql
        ports:
            - 8080:80
        environment:
            MYSQL_USERNAME: "${DB_USERNAME}"
            MYSQL_ROOT_PASSWORD: "${DB_PASSWORD}"
            PMA_HOST: mysql
        networks:
            - sail
        depends_on:
            - mysql

save the file and go to your terminal in the project

PC~/(folder-name)$ : add " ./vendor/bin/sail up " -> only what is inside the quotes

and finish :) If it served you, vote positively for this answer, thank you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM