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

Cannot mount volumes inside docker-compose

I have this docker compose in my repo version: "3.9" services: service: image: <REGISTRIY_LINK_TO_IMG> platform: linux/x86_64 build: context: . dockerfile: Dockerfile ports: - "8080:8080" - "8081:8081" gql-schema-verify: image: <REGISTRIY_LINK_TO_IMG> entrypoint: [] volumes: - ./service/src/main/resources/graphql:/home/node/updated environment: - VALIDATED_SERVICE=core command: /bin/bash validate…

VIEW QUESTION
Back To Top
Search