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
We need it for Akeneo 4 and 5. Magento 2 can now run on MySQL 8 too.
The text was updated successfully, but these errors were encountered:
docker-custom.yml;
docker-custom.yml
version: "3" volumes: dockerdev-mysql8-volume: external: true services: mysql8: image: mysql:8 container_name: dockerdev-mysql8 volumes: - ./conf.d/mysql/my.cnf:/etc/my.cnf.d/development.cnf:ro - dockerdev-mysql8-volume:/var/lib/mysql:rw environment: - MYSQL_ROOT_PASSWORD ports: - 127.0.0.1:3307:3307
You can then access it through dev myroot -h mysql8 or use mysql -h mysql8 -u root -pPASSWORD where PASSWORD is in your ~/development/.env.
dev myroot -h mysql8
mysql -h mysql8 -u root -pPASSWORD
PASSWORD
~/development/.env
Sorry, something went wrong.
@JeroenBoersma can you add this to this repo so we can access the MySQL 8 host with our regular user?
No branches or pull requests
We need it for Akeneo 4 and 5. Magento 2 can now run on MySQL 8 too.
The text was updated successfully, but these errors were encountered: