akeneo / Dockerfiles

DEPRECATED for PIM 4.0 and above - Official Dockerfiles for Akeneo development and testing
https://hub.docker.com/r/akeneo/
MIT License
49 stars 34 forks source link

Troubleshooting for noobs #307

Open jjanvier opened 6 years ago

jjanvier commented 6 years ago

Just a little documentation request for n00bs like me.

It would be cool to have a section that explains what we have to do start:

jjanvier commented 6 years ago

another things how to use your own mysql client through Docker

mysql -h 127.0.0.1 -P 3307 -u akeneo_pim -p akeneo_pim < foo.sql

both -h and -P must be specified!

rybus commented 6 years ago

Heyy @jjanvier , you can use docker-compose exec mysql mysql -uakeneo_pim -p akeneo_pim < /path/on/docker . I share my Downloads folder with the MySQL container to be able to execute this command as well.

damien-carcel commented 6 years ago

Also, Instead of -h 127.0.0.1, you can use --protocol=tcp.