Skip to content

Instantly share code, notes, and snippets.

@cbj4074
Created April 27, 2021 12:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbj4074/d4b437cbd379980236f21e24df90eb3d to your computer and use it in GitHub Desktop.
Save cbj4074/d4b437cbd379980236f21e24df90eb3d to your computer and use it in GitHub Desktop.
How to configure docker-compose.yml to enable phpMyAdmin in Laravel Sail
services:
phpmyadmin:
image: phpmyadmin
restart: always
ports:
- 8080:80
environment:
- PMA_HOST=mysql
networks:
- sail
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment