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

Mount volumes for local dev? #1

Open
brandontamm opened this issue May 31, 2018 · 0 comments
Open

Mount volumes for local dev? #1

brandontamm opened this issue May 31, 2018 · 0 comments

Comments

@brandontamm
Copy link

I add volume in hopes to map the /magento/htdocs directory from container to host for local dev but all I get is an empty directory - any ideas what I am doing wrong or how to mount volume correctly?

`version: '2.1'

services:
mariadb:
image: 'mariadb:latest'
environment:
- MYSQL_ROOT_PASSWORD=password
- MYSQL_DATABASE=magento
healthcheck:
test: "/usr/bin/mysql --user=root --password=password --execute "SHOW DATABASES;""
timeout: 5s
retries: 20
volumes:
- 'magento_database:/var/lib/mysql'
magento:
image: 'jamesbrink/magento:2.2-sass-sd'
environment:
- MARIADB_HOST=mariadb
- MARIADB_PORT_NUMBER=3306
- MAGENTO_DATABASE_USER=root
- MAGENTO_DATABASE_PASSWORD=password
- MAGENTO_DATABASE_NAME=magento
- MAGENTO_ADMINURI=admin
- MAGENTO_HOST=localhost
- ENABLE_SAMPLE_DATA=true
- APACHE_LOG_LEVEL=warn
ports:
- '80:80'
- '443:443'
volumes:
- './src:/magento/htdocs'

depends_on:
mariadb:
condition: service_healthy

volumes:
magento_database:
driver: local
`

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