Makefile 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. #!/usr/bin/make
  2. SHELL = /bin/sh
  3. USER_UID := $(shell id -u)
  4. USER_UNAME := $(shell id -un)
  5. USER_GID := $(shell id -g)
  6. USER_GNAME := $(shell id -gn)
  7. DATE_NOW := $(shell date '+%Y-%m-%d_%H%M%S')
  8. export USER_UID
  9. export USER_UNAME
  10. export USER_GID
  11. export USER_GNAME
  12. # export DATE_NOW
  13. pull:
  14. docker-compose pull
  15. build:
  16. 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)
  17. buildnc:
  18. 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)
  19. build_php:
  20. 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) php
  21. buildnc_php:
  22. 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) php
  23. buildnc_mysql:
  24. 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) mysql
  25. downbuildup: down build up
  26. up:
  27. docker-compose up -d
  28. ps:
  29. docker-compose ps
  30. logs:
  31. docker-compose logs -f
  32. d9_maj_config: d9_crd d9_composer_install d9_updb d9_cim d9_sync_struct d9_cr d9_pag
  33. d9_crd:
  34. docker exec eql-php-1 /bin/bash -c "drush cache-clear drush"
  35. d9_cr:
  36. docker exec eql-php-1 /bin/bash -c "drush cr"
  37. d9_updb:
  38. docker exec eql-php-1 /bin/bash -c "drush updb -y"
  39. d9_cim:
  40. docker exec eql-php-1 /bin/bash -c "drush config-import -y"
  41. d9_sync_struct:
  42. docker exec eql-php-1 /bin/bash -c "drush im --choice full && drush ib --choice full & drush it --choice full"
  43. d9_pag:
  44. docker exec eql-php-1 /bin/bash -c "drush pag all canonical_entities:node && drush pag all canonical_entities:taxonomy_term"
  45. d9_composer_install:
  46. docker exec eql-php-1 /bin/bash -c "composer install"
  47. down:
  48. docker-compose down
  49. exec_nginx:
  50. docker exec -it eql-nginx-1 bash
  51. exec_php:
  52. docker exec -it eql-php-1 bash
  53. exec_mysql:
  54. docker exec -it eql-mysql-1 bash
  55. dump_d9_db:
  56. docker exec eql-mysql-1 sh -c 'exec mysqldump -uroot -peql eql' > ./ressources/eql-$(DATE_NOW)-local.sql