Skip to content

Instantly share code, notes, and snippets.

@denalena
Created November 12, 2020 16:13
Show Gist options
  • Save denalena/bc5ec78773b92ac7f737adb2167f2bff to your computer and use it in GitHub Desktop.
Save denalena/bc5ec78773b92ac7f737adb2167f2bff to your computer and use it in GitHub Desktop.
Docker Compose | apache2 + php7.3
version: "2.4"
services:
apache:
privileged: true
image: httpd:2.4
volumes:
- ./httpd.conf:/usr/local/apache2/conf/httpd.conf
- ./dist:/usr/local/apache2/htdocs
ports:
- 80:80
php:
privileged: true
image: php:7.3-fpm
volumes_from:
- apache
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment