|
1 week ago | |
---|---|---|
Docker | 1 week ago | |
bin | 2 years ago | |
log | 2 years ago | |
public_html @ 2b67b22ce5 | 1 month ago | |
public_html_legacy @ 49a0944412 | 1 month ago | |
ressources | 2 months ago | |
solr_cores @ 82bc5b7e78 | 1 month ago | |
.env | 2 months ago | |
.gitignore | 2 months ago | |
.gitmodules | 1 year ago | |
LICENSE.txt | 2 years ago | |
Makefile | 1 week ago | |
README.md | 1 year ago | |
docker-compose.yml | 2 months ago |
Materio powered by druapl 8 in docker environement (nginx, php:7-fpm+drush, phpmyadmin, redis)
sudo pacman -S docker docker-compose docker-machine
this will clone this repos (main docker environement) and the edlp drupal 8 source code (without sites/default folder)
git clone --recursive -o figli https://figureslibres.io/gogs/bachir/docker-materio-d8.git
cp -r ressources/default public_html/sites/
get the files from where you have it and rsync it to public_html/sites/default/files/
Copy your-sql-dump.sql into ./ressources/materio_d8.sql It will be automaticly imported into the mysql container db (only) on the first docker-compose up
add to your /etc/hosts :
127.0.0.1 dev.materio.com
127.0.0.1 dev.phpmyadmin.materio.com
configure your apache vhosts to add a reverse proxy that will redirect the dev.materio.com to our container
<Virtualhost *:80>
ServerName dev.materio.com
ProxyPass / http://127.0.0.1:8880/
ProxyPassReverse / http://127.0.0.1:8880/
ProxyRequests Off
ProxyPreserveHost On
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
</Virtualhost>
<Virtualhost *:80>
ServerName dev.phpmyadmin.materio.com
ProxyPass / http://127.0.0.1:8881/
ProxyPassReverse / http://127.0.0.1:8881/
ProxyRequests Off
ProxyPreserveHost On
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
</Virtualhost>
only before the first run (may take some time)
sudo docker-compose build
then each time you want to launch the app
sudo docker-compose up -d
Be aware that a first up, since the db is empty, it will be populated with your file db.sql. It may take some time depending of your db size.
Only at first up, finish to install drupal composer dependencies
sudo docker exec -it materiod8_php_1 bash
composer install
You can now visit http://dev.materio.com on your browser
you can access to drush by loging into the php container
sudo docker exec -it materiod8_php_1 bash
once inside the php container in /var/www/html you can use drush as usual
Dev process needs gulp to run in:
npm install
gulp
copy your db backup into the mysql container
sudo docker cp your-db-file.sql materiod8_mysql_1:/root/
log into mysql container
sudo docker exec -it materiod8_mysql_1 bash
once inside the mysql container you can use mysql command to drop then create and load the db with your file
do not use directly docker or docker-compose to run this instance
use make instead like make up
build:
docker-compose build --build-arg USER_UID=$(USER_UID) --build-arg USER_UNAME=$(USER_UNAME) --build-arg USER_GID=$(USER_GID) --build-arg USER_GNAME=$(USER_GNAME)
buildnc:
docker-compose build --no-cache --build-arg USER_UID=$(USER_UID) --build-arg USER_UNAME=$(USER_UNAME) --build-arg USER_GID=$(USER_GID) --build-arg USER_GNAME=$(USER_GNAME)
up:
docker-compose up -d
upbuild:
docker-compose up -d --build
ps:
docker-compose ps
logs:
docker-compose logs -f
down:
docker-compose down
php:
docker exec -it materiod8_php_1 bash
phplegacy:
docker exec -it materiod8_php-legacy_1 bash
https://www.ostraining.com/blog/drupal/docker/
http://tech.osteel.me/posts/2017/01/15/how-to-use-docker-for-local-web-development-an-update.html
https://mmenozzi.github.io/2016/01/22/php-web-development-with-docker/
https://dzone.com/articles/continuous-drupal-maintaining-a-drupal-website-wit//
https://github.com/glaux/drupal8docker
https://www.jeffgeerling.com/blogs/jeff-geerling/drupal-8-redis-php-7-nginx-and
https://chromatichq.com/blog/configuring-redis-caching-drupal-8