skip to Main Content

Multi Site PHP-Apache docker

I've been trying to build a multi site Apache docker but all in vain. Here is my docker-compose.yml version: '3.9' services: app: container_name: Core build: context: ./conf/core args: UID: ${UID:-1000} env_file: - "./.env" ports: - "${HTTP_PORT:-80}:80" - "${HTTPS_PORT:-443}:443" volumes: -…

VIEW QUESTION
Back To Top
Search