123456789101112131415161718 |
- version: '3'
- services:
- cuspsr:
- image: my-php-fpm:2021.3
- container_name: "cusmvc"
- volumes:
- - ./:/www
- cuspsr-nginx:
- image: library/nginx:latest
- container_name: "cusmvc-nginx"
- ports:
- - 8003:80
- volumes:
- - ./:/usr/share/nginx/html
- - ./docker/nginx/conf/conf.d:/etc/nginx/conf.d
- depends_on:
- - cuspsr
|