Skip to content

Instantly share code, notes, and snippets.

@devdrops
Created December 16, 2016 18:40
Show Gist options
  • Select an option

  • Save devdrops/a4b61d1277ae2fedc70b262f93a668b0 to your computer and use it in GitHub Desktop.

Select an option

Save devdrops/a4b61d1277ae2fedc70b262f93a668b0 to your computer and use it in GitHub Desktop.
Docker environment (magento-flavoured)
# MYSQL
MYSQL_ROOT_PASSWORD=root
MYSQL_DATABASE=magento
MYSQL_USER=magento
MYSQL_PASSWORD=1234
/www/*
!/www/.gitkeep
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