This repository has been archived by the owner on Feb 13, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 645
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #1356: Add second Dockerfile without a Drupal installation.
- Loading branch information
1 parent
067a73e
commit 00e985a
Showing
3 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM geerlingguy/docker-debian8-ansible:latest | ||
MAINTAINER Jeff Geerling | ||
|
||
# Copy provisioning directory and vars files into container. | ||
COPY ./ /etc/ansible/drupal-vm | ||
COPY ./provisioning/docker/vars/overrides-no-install.yml /etc/ansible/drupal-vm/local.config.yml | ||
|
||
# Provision Drupal VM inside Docker. | ||
RUN ansible-playbook /etc/ansible/drupal-vm/provisioning/playbook.yml | ||
|
||
EXPOSE 22 80 443 8025 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
hostname_configure: false | ||
firewall_enabled: false | ||
installed_extras: | ||
- adminer | ||
- drush | ||
- mailhog | ||
- pimpmylog | ||
# - varnish | ||
|
||
# Don't build or install Drupal inside the container. | ||
drupal_build_makefile: false | ||
drupal_build_composer: false | ||
drupal_build_composer_project: false | ||
drupal_install_site: false |