Skip to content

Instantly share code, notes, and snippets.

@elvinlari
Last active September 22, 2022 19:11
Show Gist options
  • Save elvinlari/85b4916bbde486f640ac46cfd4574962 to your computer and use it in GitHub Desktop.
Save elvinlari/85b4916bbde486f640ac46cfd4574962 to your computer and use it in GitHub Desktop.
PhpMyAdmin service.
phpmyadmin:
image: phpmyadmin:5.2.0
container_name: phpmyadmin
environment:
PMA_ARBITRARY: 1
PMA_HOST: ${DB_HOST}
PMA_USER: ${DB_USERNAME}
PMA_PASSWORD: ${DB_PASSWORD}
PMA_PORT: ${DB_PORT}
depends_on:
- mysql
ports:
- 8888:80
networks:
- laravel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment