-
-
Save devdrops/a4b61d1277ae2fedc70b262f93a668b0 to your computer and use it in GitHub Desktop.
Docker environment (magento-flavoured)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # MYSQL | |
| MYSQL_ROOT_PASSWORD=root | |
| MYSQL_DATABASE=magento | |
| MYSQL_USER=magento | |
| MYSQL_PASSWORD=1234 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /www/* | |
| !/www/.gitkeep |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '2' | |
| services: | |
| mysql: | |
| image: mysql:5.6 | |
| env_file: | |
| - .env | |
| volumes: | |
| - database:/var/lib/mysql | |
| ports: | |
| - "3307:3306" | |
| magento: | |
| image: ricardotulio/ecommerce-platforms | |
| volumes: | |
| - ./www/:/var/www/ | |
| ports: | |
| - "8080:80" | |
| depends_on: | |
| - mysql | |
| volumes: | |
| database: | |
| driver: local |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment