Skip to content
New issue

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

MySQL 8 support #143

Open
peterjaap opened this issue Mar 10, 2021 · 2 comments
Open

MySQL 8 support #143

peterjaap opened this issue Mar 10, 2021 · 2 comments

Comments

@peterjaap
Copy link
Collaborator

We need it for Akeneo 4 and 5. Magento 2 can now run on MySQL 8 too.

@peterjaap
Copy link
Collaborator Author

peterjaap commented Sep 16, 2022

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.

@peterjaap
Copy link
Collaborator Author

@JeroenBoersma can you add this to this repo so we can access the MySQL 8 host with our regular user?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant