abesiyo / drucker
Docker + drupal composer stack
Installs: 46
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
Requires
- composer/installers: ^1.2
- cweagans/composer-patches: ~1.0
- drupal-composer/drupal-scaffold: ^2.2
- drupal/console: ~1.0
- drupal/core: ^8.6
- drush/drush: ~9
- vlucas/phpdotenv: ^2.4
This package is auto-updated.
Last update: 2025-03-05 22:25:16 UTC
README
Introduction
Docker compose kick-starting set.
Set up
- NGINX: Latest from docker hub.
- PHP 7-fpm: Optimized version 7.1.10
- Percona: Version 5.7
Running the project
Get the project with composer:
composer create-project abesiyo/drucker
Uncomment the last 3 lines of the settings.php to include the local.settings.php with the docker configuration.
Before running docker, you can do some changes on .env to fit the configuration to your project.
Run docker compose
docker-compose up -d
If you have the domain in your hosts file, you should be able to hit the site on https://vm.localhost/
Other useful commands
Stop docker stack
docker-compose stop
Destroy the whole docker stack. This also delete the database.
docker-compose down