Create docker-compose.yml
This commit is contained in:
parent
3d767917b7
commit
6bac181fbc
1 changed files with 19 additions and 0 deletions
19
docker-compose.yml
Normal file
19
docker-compose.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
services:
|
||||
php:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: /docker/Dockerfile
|
||||
volumes:
|
||||
- .:/var/www/html
|
||||
expose:
|
||||
- "9000"
|
||||
|
||||
nginx:
|
||||
image: nginx:alpine
|
||||
volumes:
|
||||
- .:/var/www/html
|
||||
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
||||
ports:
|
||||
- "80:80"
|
||||
depends_on:
|
||||
- php
|
Loading…
Add table
Reference in a new issue