| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- 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
- php83-net012:
- image: php83
- depends_on:
- - apache2
- build:
- context: php
- dockerfile: php.yml
- args:
- PHP_VERSION: 8.3
- environment:
- TZ: Europe/Rome
- ports:
- - 10089:80
- - 10449:443
- volumes:
- - net012:/home/httpd
- entrypoint: ['/bin/bash','/root/run.sh']
- restart: unless-stopped
- php83-net060:
- image: php83
- depends_on:
- - apache2
- build:
- context: php
- dockerfile: php.yml
- args:
- PHP_VERSION: 8.3
- environment:
- TZ: Europe/Rome
- ports:
- - 11089:80
- - 11449:443
- volumes:
- - net060:/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"
- device: ":/home/httpd"
- net060:
- driver: local
- driver_opts:
- type: nfs
- o: "addr=10.132.0.60,soft,rw,noexec,nosuid,nodev"
- device: ":/home/httpd"
|