12345678910111213141516171819202122 |
- version: '3'
- services:
- redis-demo-php:
- image: my-php-fpm:2019.7
- container_name: "redis-demo-php"
- volumes:
- - ./:/www
- redis-demo-nginx:
- image: library/nginx:latest
- container_name: "redis-demo-nginx"
- ports:
- - 80:80
- - 443:443
- volumes:
- - ./:/usr/share/nginx/html
- - ./docker/nginx/conf/conf.d:/etc/nginx/conf.d
- depends_on:
- - redis-demo-php
|