docker-scripts/linux/ecosystem/apache2/php7.4
2024-12-10 15:55:53 +03:00
..
etc/apache2 Health check is broken in apache2 image 2023-04-01 00:26:26 +03:00
docker-compose.yml WIP - backports 2024-06-21 16:22:11 +03:00
docker-entrypoint.sh fixes 2022-03-21 18:36:40 +03:00
Dockerfile apache2 fixes, php fixes, epicmorg/php dropped 2024-12-10 15:55:53 +03:00
Makefile infrastructure improvements + drop ASTRA SE\CE 1.7 support 2024-08-17 16:55:42 +03:00
README.md folders 2021-09-21 20:44:37 +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