docker-scripts/linux/ecosystem/apache2/php7.3
2023-06-08 20:53:22 +03:00
..
etc/apache2 Health check is broken in apache2 image 2023-04-01 00:26:26 +03:00
docker-compose.yml folders 2021-09-21 20:44:37 +03:00
docker-entrypoint.sh fixes 2022-03-21 18:36:40 +03:00
Dockerfile mega update 2023-06-08 20:53:22 +03:00
Makefile makefile updates 2022-09-09 15:47:09 +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