services: start: image: start build: context: start dockerfile: start.yml postfix: image: postfix depends_on: - start build: context: postfix dockerfile: postfix.yml redis: image: redis depends_on: - start build: context: redis dockerfile: redis.yml entrypoint: ['/bin/bash','/root/run.sh'] restart: unless-stopped apache2: image: apache2 depends_on: - postfix build: context: apache2 dockerfile: apache2.yml php56-net012: image: php56 depends_on: - apache2 build: context: php dockerfile: php.yml args: PHP_VERSION: 5.6 environment: TZ: Europe/Rome ports: - 10079:80 - 10479:443 volumes: - net012:/home/httpd entrypoint: ['/bin/bash','/root/run.sh'] restart: unless-stopped php81-net012: image: php81 depends_on: - apache2 build: context: php dockerfile: php.yml args: PHP_VERSION: 8.1 environment: TZ: Europe/Rome ports: - 10081:80 - 10481:443 volumes: - net012:/home/httpd entrypoint: ['/bin/bash','/root/run.sh'] restart: unless-stopped php83-net012: image: php83 depends_on: - apache2 build: context: php dockerfile: php.yml args: PHP_VERSION: 8.3 environment: TZ: Europe/Rome ports: - 10083:80 - 10483:443 volumes: - net012:/home/httpd entrypoint: ['/bin/bash','/root/run.sh'] restart: unless-stopped php84-net012: image: php84 depends_on: - apache2 build: context: php dockerfile: php.yml args: PHP_VERSION: 8.4 environment: TZ: Europe/Rome ports: - 10084:80 - 10484:443 volumes: - net012:/home/httpd entrypoint: ['/bin/bash','/root/run.sh'] restart: unless-stopped volumes: net012: driver: local driver_opts: type: nfs o: "addr=10.132.0.12,soft,rw,noexec,nosuid,nodev,async" device: ":/home/httpd" net060: driver: local driver_opts: type: nfs o: "addr=10.132.0.60,soft,rw,noexec,nosuid,nodev,async" device: ":/home/httpd"