docker-scripts/linux/ecosystem/apache2/php8.0
2022-02-25 13:45:21 +03:00
..
docker-compose.yml apache2 php8 fix 2022-01-25 16:19:14 +03:00
Dockerfile update apace2 + php8, update teamcity + php8 2022-02-25 13:45:21 +03:00
Makefile timezonedb php fixes 2022-01-25 13:22:18 +03:00
README.md timezonedb php fixes 2022-01-25 13:22:18 +03:00
run.sh apache2 startup fix 2022-01-25 15:29:43 +03:00

Compose example

version: '3.7'
services:
  websites:
    image: epicmorg/websites
#    depends_on:
#      - mysql
#      - memcached
    restart: unless-stopped
    volumes:
      - /etc/localtime:/etc/localtime
      - /etc/timezone:/etc/timezone
#      - /etc/letsencrypt:/etc/letsencrypt
      - www:/var/www
      - apache2:/etc/apache2
      - php:/etc/php
    restart: unless-stopped
#    extra_hosts:
#      - "example.com:192.168.0.11"
    tmpfs:
      - /tmp
      - /var/lib/php/sessions
volumes:
  www:
    external: true
  apache2:
    external: true
  php:
    external: true