| 123456789101112131415161718 |
- version: '2'
- services:
- php:
- build:
- context: ./DockerImg/php
- hostname: rainloop
- container_name: rl.php
- expose:
- - 9000
- volumes:
- - ./:/var/www
- # - ./build/local/:/var/www
- - ./.docker/php/rainloop.ini:/usr/local/etc/php/conf.d/rainloop.ini
- restart: always
- networks:
- default:
- name: mynet
- external: true
|