Add all files needed to bring up VM and run agaric.com locally
This commit is contained in:
parent
52c8b60bac
commit
4d2bc0ee24
742 changed files with 24037 additions and 0 deletions
16
box/Dockerfile
Normal file
16
box/Dockerfile
Normal file
|
@ -0,0 +1,16 @@
|
|||
FROM geerlingguy/docker-debian9-ansible:latest
|
||||
LABEL maintainer="Jeff Geerling"
|
||||
|
||||
# Copy provisioning directory, variable overrides, and scripts into container.
|
||||
COPY ./ /etc/ansible/drupal-vm
|
||||
COPY ./provisioning/docker/vars/docker-hub-overrides.yml /etc/ansible/drupal-vm/local.config.yml
|
||||
COPY ./provisioning/docker/bin/* /usr/local/bin
|
||||
|
||||
# Provision Drupal VM inside Docker.
|
||||
RUN ansible-playbook /etc/ansible/drupal-vm/provisioning/playbook.yml \
|
||||
# Enable FPM. See https://github.com/geerlingguy/drupal-vm/issues/1366.
|
||||
&& systemctl enable php7.1-fpm.service
|
||||
|
||||
EXPOSE 80 443 3306 8025
|
||||
|
||||
CMD ["/lib/systemd/systemd"]
|
Loading…
Add table
Add a link
Reference in a new issue