Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

524
Views
docker: Why do I access to phpmyadmin?

and excuse me for my English. I'm using docker in wsl 2 and I have a docker application with three images: laravel, phpmyadmin and mysql

my problem is what I can not access to phpmyadmin.¿can I help me please? Attached image of the docker application running.

enter image description here

Whe I tye to access to phpmyadmin, appearc not found page.

enter image description here

docker-compose.yml

version: '3.8'
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}' #empty(niether)
            MYSQL_DATABASE: '${DB_DATABASE}'  #fastfood
            # MYSQL_USER: '${DB_USERNAME}' #root
            MYSQL_PASSWORD: '${DB_PASSWORD}' #empty
            MYSQL_HOST: '${DB_HOST}' #localhost
            MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
        volumes:
            - 'sailmysql:/var/lib/mysql'
        networks:
            - sail
    phpmyadmin:
        image: 'phpmyadmin'
        container_name: pma
        environment:
            PMA_HOST: '${DB_HOST}' #localhost
            PMA_PASSWORD: '${DB_PASSWORD}' #empty(niether)
            PMA_ARBITRARY: 1
        restart: always
        ports:
            - 8081:80
        depends_on:
            - mysql
        networks:
            - sail
networks:
    sail:
        driver: bridge
volumes:
    sailmysql:
        driver: local

information

windows 10 19052.1052 docker 3.5.1

over 4 years ago · Santiago Trujillo
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!