2019-08-05 09:38:26 +00:00
|
|
|
version: "2.1"
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
apache-for-fpm:
|
|
|
|
image: apache-scuttle:$VERSION_APACHE_FPM
|
2020-02-26 16:52:40 +00:00
|
|
|
#build: "https://git.scimetis.net/yohan/docker-apache-for-fpm.git"
|
2019-08-05 09:38:26 +00:00
|
|
|
container_name: apache-scuttle
|
|
|
|
networks:
|
|
|
|
- reverse-proxy
|
|
|
|
- php5-fpm
|
|
|
|
volumes:
|
2020-02-26 16:52:40 +00:00
|
|
|
- /mnt/volumes/scuttle_code/data:/var/www/html:z
|
2019-08-05 09:38:26 +00:00
|
|
|
environment:
|
|
|
|
FPM_HOST: php5-fpm:9000
|
|
|
|
SERVER_NAME: scuttle.scimetis.net
|
|
|
|
|
|
|
|
php5-fpm:
|
|
|
|
image: php5-fpm:$VERSION_PHP_FPM
|
2020-02-26 16:52:40 +00:00
|
|
|
#build: "https://git.scimetis.net/yohan/docker-php5-fpm.git"
|
2019-08-05 09:38:26 +00:00
|
|
|
container_name: php5-fpm
|
|
|
|
networks:
|
|
|
|
- php5-fpm
|
|
|
|
- mysqlnet
|
|
|
|
volumes:
|
2020-02-26 16:52:40 +00:00
|
|
|
- /mnt/volumes/scuttle_code/data:/var/www/html:z
|
|
|
|
- /mnt/volumes/scuttle_php5-fpm_conf/data:/etc/php5/fpm/pool.d:Z
|
2019-08-05 09:38:26 +00:00
|
|
|
|
|
|
|
networks:
|
|
|
|
|
|
|
|
reverse-proxy:
|
|
|
|
external: true
|
|
|
|
|
|
|
|
php5-fpm:
|
|
|
|
|
|
|
|
mysqlnet:
|
|
|
|
external: true
|