Saul Willers @ PlexityNet
Drupal 6 (PHP <= 5.3) |
? | ? | ? | ? | ? | ? |
Drupal 7 (5.3 >= PHP <= 5.4) |
? | ? | ? | ? | ? | ? |
Drupal 8 (PHP >= 5.4) |
? | ? | ? | ? | ? | ? |
DB (MariaDB / MySQL / MongoDB) | ? | ? | ? | ? | ? | ? |
Apache Solr (Solr 3 / 4) |
? | ? | ? | ? | ? | ? |
My laptop | Your laptop | QA | Staging | Prod on VM | Prod on bare metal |
(This is a somewhat overused analogy in Docker, but with good reason)
Dockerfile
FROM ubuntu MAINTAINER Saul WillersRUN apt-get install -y apache2 EXPOSE 80 ENTRYPOINT ["/usr/sbin/apache2"] CMD ["-D", "FOREGROUND"]
$ sudo docker build -t="plexitynet/apache2" .
$ sudo docker run -d -p 80 plexitynet/apache2
$ sudo docker ...
Dockerfile
s)