We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
phpmyadmin
docker compose up -d
docker compose down
phpmyadmin mysql
The text was updated successfully, but these errors were encountered:
# docker-compose.yml version: '3' services: mysql: image: mysql:5.7 # customize version ports: - 3306:3306 # customize host port volumes: - ./data:/var/lib/mysql # customize host dir environment: MYSQL_ROOT_PASSWORD: 1234
Run mysql client in running container: docker compose exec mysql mysql -p1234
docker compose exec mysql mysql -p1234
Sorry, something went wrong.
No branches or pull requests
phpmyadmin
command runsdocker compose up -d
before startingphpmyadmin
command runsdocker compose down
after stoppingphpmyadmin mysql
to run interactive MySQL commandThe text was updated successfully, but these errors were encountered: